From b89efa8048e5866e67264a7a0064d14d415574f6 Mon Sep 17 00:00:00 2001 From: Mohammed Thasleem Date: Mon, 20 Jun 2022 16:28:16 +0530 Subject: tests/i915/i915_pm_dc: Check dc3co count to skip the test If dc3co is not enabled in driver, counter will always be zero and we can simply skip the test. Fixes: https://gitlab.freedesktop.org/drm/intel/-/issues/4364 Signed-off-by: Mohammed Thasleem Reviewed-by: Swati Sharma --- tests/i915/i915_pm_dc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c index 2c2c5086..a780f2cb 100644 --- a/tests/i915/i915_pm_dc.c +++ b/tests/i915/i915_pm_dc.c @@ -274,7 +274,8 @@ static void check_dc3co_with_videoplayback_like_load(data_t *data) usleep(delay); } - check_dc_counter(data, CHECK_DC3CO, dc3co_prev_cnt); + igt_require_f(dc_state_wait_entry(data->debugfs_fd, + CHECK_DC3CO, dc3co_prev_cnt), "dc3co-vpb-simulation not enabled\n"); } static void require_dc_counter(int debugfs_fd, int dc_flag) -- cgit v1.2.3