mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-07-23 18:06:18 +00:00
tests/gem_ctx_bad_exec: Check the errno, too
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
466da453ae
commit
4a6a59f314
@ -101,12 +101,12 @@ igt_main
|
||||
igt_subtest("render")
|
||||
igt_assert(exec(fd, handle, I915_EXEC_RENDER, ctx_id) == 0);
|
||||
igt_subtest("bsd")
|
||||
igt_assert(exec(fd, handle, I915_EXEC_BSD, ctx_id) != 0);
|
||||
igt_assert(exec(fd, handle, I915_EXEC_BSD, ctx_id) != 0 && errno == ENOENT);
|
||||
igt_subtest("blt")
|
||||
igt_assert(exec(fd, handle, I915_EXEC_BLT, ctx_id) != 0);
|
||||
igt_assert(exec(fd, handle, I915_EXEC_BLT, ctx_id) != 0 && errno == ENOENT);
|
||||
#ifdef I915_EXEC_VEBOX
|
||||
igt_require(gem_has_vebox(fd));
|
||||
igt_subtest("vebox")
|
||||
igt_assert(exec(fd, handle, I915_EXEC_VEBOX, ctx_id) != 0);
|
||||
igt_assert(exec(fd, handle, I915_EXEC_VEBOX, ctx_id) != 0 && errno == ENOENT);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user