summaryrefslogtreecommitdiff
path: root/tests/prime_busy.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-07-01 10:55:40 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2016-07-01 10:57:04 +0100
commit0f1584ed6bdf92189c5324430dda2c83077012cb (patch)
tree19cbad206837cdac916d05e18786091a559b1791 /tests/prime_busy.c
parent1681df8a21f5f3e4d342b0b28f593d71dfb90a64 (diff)
igt/prime_busy: Promote the test for dma-buf implicit fences as basic
This is a requirement for interoperability that we fail. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests/prime_busy.c')
-rw-r--r--tests/prime_busy.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/prime_busy.c b/tests/prime_busy.c
index 9e9baf8e..1c26f48f 100644
--- a/tests/prime_busy.c
+++ b/tests/prime_busy.c
@@ -189,7 +189,9 @@ igt_main
for (e = intel_execution_engines; e->name; e++) {
for (const struct mode *m = modes; m->name; m++) {
- igt_subtest_f("%s-%s", m->name, e->name) {
+ igt_subtest_f("%s%s-%s",
+ e->exec_id == 0 ? "basic-" : "",
+ m->name, e->name) {
gem_require_ring(fd, e->exec_id | e->flags);
igt_skip_on_f(gen == 6 &&
e->exec_id == I915_EXEC_BSD,