summaryrefslogtreecommitdiff
path: root/tests/i915/i915_pm_rpm.c
diff options
context:
space:
mode:
authorAnshuman Gupta <anshuman.gupta@intel.com>2022-03-16 10:30:37 +0530
committerPetri Latvala <petri.latvala@intel.com>2022-03-16 11:49:51 +0200
commit1e16f23f496c37b7a5678ddebe89c9482b351bb9 (patch)
treeaeb8e3a64d4c80cfc72dcc2cfa277fe9821d5e16 /tests/i915/i915_pm_rpm.c
parenta6a5a178cb1cbe0dab8d8d092a4aee932ccb93cc (diff)
test/i915_pm_rpm: Remove igt_describe() from dynamic subtest
Remove igt_describe() from gem-execbuf-stress() dynamic subtest to avoid the igt internal assert. Fixes: aa6eb64bac51 ("i915_pm_rpm: Add placement to gem_exec_stress") Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> Reviewed-by: Badal Nilawar <badal.nilawar@intel.com>
Diffstat (limited to 'tests/i915/i915_pm_rpm.c')
-rw-r--r--tests/i915/i915_pm_rpm.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index 8ae407e5..461730e8 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -2170,14 +2170,12 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
system_suspend_subtest(SUSPEND_STATE_DISK, SUSPEND_TEST_NONE);
/* GEM stress */
+ igt_describe("Validate execbuf submission while exercising rpm "
+ "suspend/resume cycles.");
igt_subtest_with_dynamic("gem-execbuf-stress") {
for_each_memory_region(r, drm_fd) {
- igt_describe("Validate execbuf submission while exercising rpm "
- "suspend/resume cycles.");
igt_dynamic_f("%s", r->name)
gem_execbuf_stress_subtest(rounds, WAIT_STATUS, &r->ci);
- igt_describe("Validate execbuf submission while exercising rpm "
- "suspend/resume cycles with extra wait.");
igt_dynamic_f("%s-%s", "extra-wait", r->name)
gem_execbuf_stress_subtest(rounds, WAIT_STATUS | WAIT_EXTRA, &r->ci);
}