public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] tests/gem_exec_params: change flags used in invalid-flags test
@ 2015-01-12 14:09 tim.gore
  2015-01-12 16:04 ` Dave Gordon
  0 siblings, 1 reply; 8+ messages in thread
From: tim.gore @ 2015-01-12 14:09 UTC (permalink / raw)
  To: intel-gfx; +Cc: thomas.wood

From: Tim Gore <tim.gore@intel.com>

The invalid-flags test in gem_exec_params uses
(I915_EXEC_HANDLE_LUT << 1) as an invalid flag, but this
is no longer invalid for recent android versions, and may
not be invalid in Linux in the future. So I have changed
this test to use (__I915_EXEC_UNKNOWN_FLAGS) instead.
__I915_EXEC_UNKNOWN_FLAGS is defined in i915_drm.h as a
mask of all the undefined flags.

Signed-off-by: Tim Gore <tim.gore@intel.com>
---
 tests/gem_exec_params.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/gem_exec_params.c b/tests/gem_exec_params.c
index f63eda9..2a1c544 100644
--- a/tests/gem_exec_params.c
+++ b/tests/gem_exec_params.c
@@ -179,7 +179,7 @@ igt_main
 	/* HANDLE_LUT and NO_RELOC are already exercised by gem_exec_lut_handle */
 
 	igt_subtest("invalid-flag") {
-		execbuf.flags = I915_EXEC_RENDER | (I915_EXEC_HANDLE_LUT << 1);
+		execbuf.flags = I915_EXEC_RENDER | (__I915_EXEC_UNKNOWN_FLAGS);
 		RUN_FAIL(EINVAL);
 	}
 
-- 
2.2.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-01-15 17:44 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-12 14:09 [PATCH i-g-t] tests/gem_exec_params: change flags used in invalid-flags test tim.gore
2015-01-12 16:04 ` Dave Gordon
2015-01-12 16:14   ` Gore, Tim
2015-01-12 23:26     ` Daniel Vetter
2015-01-13  9:48       ` Gore, Tim
2015-01-13 22:20         ` Daniel Vetter
2015-01-15 13:50           ` Gore, Tim
2015-01-15 17:42           ` Dave Gordon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox