[Intel-gfx] [PATCH i-g-t] lib: allow wildcard matching when specifying subtests

Thomas Wood thomas.wood at intel.com
Wed Sep 16 07:26:24 PDT 2015


This allows multiple subtests to be specified using standard wildcard
characters when using the --run-subtest command line option.

Signed-off-by: Thomas Wood <thomas.wood at intel.com>
---
 lib/igt_core.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/igt_core.c b/lib/igt_core.c
index 129476c..59127ca 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -56,6 +56,7 @@
 #include <ctype.h>
 #include <limits.h>
 #include <locale.h>
+#include <fnmatch.h>
 
 #include "drmtest.h"
 #include "intel_chipset.h"
@@ -771,7 +772,7 @@ bool __igt_run_subtest(const char *subtest_name)
 	}
 
 	if (run_single_subtest) {
-		if (strcmp(subtest_name, run_single_subtest) != 0)
+		if (fnmatch(run_single_subtest, subtest_name, 0) != 0)
 			return false;
 		else
 			run_single_subtest_found = true;
-- 
1.9.1



More information about the Intel-gfx mailing list