summaryrefslogtreecommitdiff
path: root/tests/i915/gem_eio.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/i915/gem_eio.c')
-rw-r--r--tests/i915/gem_eio.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/i915/gem_eio.c b/tests/i915/gem_eio.c
index ac85a2ef..b0be128e 100644
--- a/tests/i915/gem_eio.c
+++ b/tests/i915/gem_eio.c
@@ -313,8 +313,20 @@ static void __test_banned(int fd)
igt_spin_t *hang;
if (__gem_execbuf(fd, &execbuf) == -EIO) {
+ uint32_t ctx = 0;
+
igt_info("Banned after causing %lu hangs\n", count);
igt_assert(count > 1);
+
+ /* Only this context, not the file, should be banned */
+ igt_assert_neq(__gem_context_create(fd, &ctx), -EIO);
+ igt_assert_neq(ctx, 0);
+
+ /* And check it actually works! */
+ execbuf.rsvd1 = ctx;
+ gem_execbuf(fd, &execbuf);
+
+ gem_context_destroy(fd, ctx);
return;
}