[Piglit] [PATCH 24/42] results_v2_tests.py: Fix test names
Dylan Baker
baker.dylan.c at gmail.com
Wed Apr 22 15:10:13 PDT 2015
Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
framework/tests/results_v2_tests.py | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/framework/tests/results_v2_tests.py b/framework/tests/results_v2_tests.py
index 934c947..78011a7 100644
--- a/framework/tests/results_v2_tests.py
+++ b/framework/tests/results_v2_tests.py
@@ -84,10 +84,15 @@ with utils.with_tempfile(json.dumps(DATA)) as t:
def test_unchanged():
- """Version 2: results with no caps are not mangled."""
+ """backends.json.update_results (2 -> 3): results with no caps are not mangled"""
nt.ok_('test/is/a/test' in RESULT.tests)
def test_lower():
- """Version 2: results with aps are lowered."""
+ """backends.json.update_results (2 -> 3): results with caps are lowered"""
nt.ok_('test/is/some/other1/test' in RESULT.tests)
+
+
+def test_removed():
+ """backends.json.update_results (2 -> 3): results with caps are removed"""
+ nt.ok_('Test/Is/SomE/Other1/Test' not in RESULT.tests)
--
2.3.5
More information about the Piglit
mailing list