summaryrefslogtreecommitdiff
path: root/tests/gem_ringfill.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-01-22 19:01:02 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2016-01-22 19:11:46 +0000
commit291ff6bcf1678192c1cc59728e1f69797962372a (patch)
tree2c8da4fbc4e777e0ff332d8c88addfe445f272c6 /tests/gem_ringfill.c
parent0091e6787cf4da668068f82d58f7169516acbc1f (diff)
igt/gem_ringfill: Disable MI_STORE_DATA_IMM on BSD/gen6
It's broken, avoid at all costs. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests/gem_ringfill.c')
-rw-r--r--tests/gem_ringfill.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/gem_ringfill.c b/tests/gem_ringfill.c
index 345e9920..d147c024 100644
--- a/tests/gem_ringfill.c
+++ b/tests/gem_ringfill.c
@@ -96,6 +96,9 @@ static void run_test(int fd, unsigned ring, unsigned flags)
uint32_t *batch, *b;
int i;
+ igt_skip_on_f(gen == 6 && (ring & ~(3<<13)) == I915_EXEC_BSD,
+ "MI_STORE_DATA broken on gen6 bsd\n");
+
memset(&execbuf, 0, sizeof(execbuf));
execbuf.buffers_ptr = (uintptr_t)obj;
execbuf.buffer_count = 2;