@@ -939,30 +939,22 @@ igt_main
/* Checks if we achieve boost using gem_wait */
igt_subtest("waitboost") {
- igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
- "This subtest is not supported when SLPC is enabled\n");
waitboost(drm_fd, false);
}
igt_describe("Check if the order of fences does not affect waitboosting");
igt_subtest("fence-order") {
- igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
- "This subtest is not supported when SLPC is enabled\n");
fence_order(drm_fd);
}
igt_describe("Check if context reuse does not affect waitboosting");
igt_subtest("engine-order") {
- igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
- "This subtest is not supported when SLPC is enabled\n");
engine_order(drm_fd);
}
/* Test boost frequency after GPU reset */
igt_subtest("reset") {
igt_hang_t hang;
- igt_skip_on_f(i915_is_slpc_enabled(drm_fd),
- "This subtest is not supported when SLPC is enabled\n");
hang = igt_allow_hang(drm_fd, 0, 0);
waitboost(drm_fd, true);
igt_disallow_hang(drm_fd, hang);
Waitboost is supported with SLPC. Re-enable the tests so we have coverage. Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com> --- tests/i915/i915_pm_rps.c | 8 -------- 1 file changed, 8 deletions(-)