Message ID | 20180816141726.14791-1-chris@chris-wilson.co.uk (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [i-g-t] igt/pm_rpm: Skip counting modes if modprobed with disable_display | expand |
diff --git a/tests/pm_rpm.c b/tests/pm_rpm.c index fefcb1beb..2c4bf529c 100644 --- a/tests/pm_rpm.c +++ b/tests/pm_rpm.c @@ -2046,7 +2046,6 @@ int main(int argc, char *argv[]) igt_assert(setup_environment()); basic_subtest(); - drm_resources_equal_subtest(); pci_d3_state_subtest(); teardown_environment(); @@ -2056,7 +2055,8 @@ int main(int argc, char *argv[]) igt_assert(setup_environment()); basic_subtest(); - drm_resources_equal_subtest(); + if (enable_one_screen_with_type(data, SCREEN_TYPE_ANY)) + drm_resources_equal_subtest(); pci_d3_state_subtest(); teardown_environment(); }
If we've explicitly disabled the display, we will never find any connected outputs or modes. Checking for them will fail and report the missing requirement instead. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Imre Deak <imre.deak@intel.com> --- tests/pm_rpm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)