'/' is not allowed in test names since it is used as the separator for
groups.

Signed-off-by: Dylan Baker <[email protected]>
---
 tests/all.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/all.py b/tests/all.py
index 2adaf64..815dd03 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -37,6 +37,7 @@ def add_single_param_test_set(group, name, *params):
         group[name + '-' + param] = plain_test(name + ' ' + param)
 
 def add_plain_test(group, args):
+    assert '/' not in args, args
     group[args] = plain_test(args)
 
 def concurrent_test(args):
@@ -45,6 +46,7 @@ def concurrent_test(args):
     return test
 
 def add_concurrent_test(group, args):
+    assert '/' not in args, args
     group[args] = concurrent_test(args)
 
 # Generate all possible subsets of the given set, including the empty set.
-- 
2.1.0

_______________________________________________
Piglit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/piglit

Reply via email to