From f1a3d0d96f8cd281446d5a79e11a29173057e730 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Mon, 21 Mar 2016 14:27:15 +0000 Subject: [PATCH] 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 --- tests/gem_ringfill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);