summaryrefslogtreecommitdiff
path: root/tests/gem_ringfill.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-03-21 14:27:15 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2016-03-21 14:40:51 +0000
commitf1a3d0d96f8cd281446d5a79e11a29173057e730 (patch)
tree0afbe5415a5af9978517918ffdd45c29a767e70d /tests/gem_ringfill.c
parent87a4d8ab64a858d71b73d7c1dd5f8f3ba3506fb6 (diff)
igt/gem_ringfill: Fix basic- reversal
Rushed flipping around the logic to add basic- and forgot to apply the corrected patch. 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 4079ce30..f2dc8034 100644
--- a/tests/gem_ringfill.c
+++ b/tests/gem_ringfill.c
@@ -223,7 +223,7 @@ igt_main
for (m = modes; m->suffix; m++) {
for (e = intel_execution_engines; e->name; e++) {
igt_subtest_f("%s%s%s",
- m->basic && !e->exec_id ? "" : "basic-",
+ m->basic && !e->exec_id ? "basic-" : "",
e->name,
m->suffix)
run_test(fd, e->exec_id | e->flags, m->flags);