summaryrefslogtreecommitdiff
path: root/tests/i915/gem_concurrent_all.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2020-12-30 16:27:18 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2020-12-30 17:41:45 +0000
commit1dc7abfca599393fe34f9fbfb99932d85a7474d2 (patch)
tree030240ffc24c67d33235c9deb6251bde64d953c1 /tests/i915/gem_concurrent_all.c
parent6329c63a2c40cd340b70c05eac2f0d25de8d107d (diff)
i915/gem_concurrent_all: Drop unused hang subtest
Let's not bother updating an unused hang subtest; there's adequate coverage by hanging the other rings, one of which will be inactive sometimes. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Acked-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Diffstat (limited to 'tests/i915/gem_concurrent_all.c')
-rw-r--r--tests/i915/gem_concurrent_all.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/i915/gem_concurrent_all.c b/tests/i915/gem_concurrent_all.c
index 08bfc9fd..0d1e769b 100644
--- a/tests/i915/gem_concurrent_all.c
+++ b/tests/i915/gem_concurrent_all.c
@@ -963,23 +963,6 @@ static igt_hang_t rcs_hang(void)
return igt_hang_ring(fd, I915_EXEC_RENDER);
}
-static igt_hang_t all_hang(void)
-{
- igt_hang_t hang = igt_hang_ring(fd, I915_EXEC_RENDER);
-
- for_each_physical_ring(e, fd) {
- struct drm_i915_gem_execbuffer2 eb = hang.spin->execbuf;
-
- eb.flags = eb_ring(e);
- if (eb.flags == I915_EXEC_RENDER)
- continue;
-
- __gem_execbuf(fd, &eb);
- }
-
- return hang;
-}
-
static void do_basic0(struct buffers *buffers,
do_copy do_copy_func,
do_hang do_hang_func)
@@ -1461,7 +1444,6 @@ run_mode(const char *prefix,
{ "", no_hang },
{ "-hang-blt", bcs_hang },
{ "-hang-render", rcs_hang },
- { "-hang-all", all_hang },
{ NULL, NULL },
}, *h;
struct buffers buffers;