In trigger the ban, we only want to observe the local context be banned and not the fpriv as a whole. Signed-off-by: Chris Wilson <chris@xxxxxxxxxxxxxxxxxx> Cc: Mika Kuoppala <mika.kuoppala@xxxxxxxxx> --- tests/i915/gem_eio.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/i915/gem_eio.c b/tests/i915/gem_eio.c index 3c54820c9..3afdbd69e 100644 --- a/tests/i915/gem_eio.c +++ b/tests/i915/gem_eio.c @@ -324,8 +324,15 @@ 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); + gem_context_destroy(fd, ctx); return; } -- 2.20.1 _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx