summaryrefslogtreecommitdiff
path: root/tests/gem_ringfill.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-01-27 16:28:35 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2016-01-27 16:42:10 +0000
commitde70769cc0a24d4d594aaa4c1f99b4a3fc8f05fe (patch)
tree09608440f3355e7ee13a8885806f3c2b8c110130 /tests/gem_ringfill.c
parentd1308990842fec5f523c129951a5c649d817be81 (diff)
Add I915_EXEC_DEFAULT to list of known engines
I dropped this from the list of rings for some tests when refactoring to a common array. Almost all of the tests should be run over the default exec engine to ensure ABI backwards compatiblity. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests/gem_ringfill.c')
-rw-r--r--tests/gem_ringfill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gem_ringfill.c b/tests/gem_ringfill.c
index dd88fcdc..bd1f371b 100644
--- a/tests/gem_ringfill.c
+++ b/tests/gem_ringfill.c
@@ -212,7 +212,7 @@ igt_main
for (mode = modes; mode->prefix; mode++) {
for (e = intel_execution_engines; e->name; e++) {
igt_subtest_f("%s%s%s",
- e->exec_id || mode->flags ? "" : mode->prefix,
+ e->exec_id || (mode->flags & ~INTERRUPTIBLE) ? "" : mode->prefix,
e->name,
mode->suffix)
run_test(fd, e->exec_id | e->flags, mode->flags);