From 5f59ce344ffb1086b74e34fa24257b87d9325cd2 Mon Sep 17 00:00:00 2001 From: Christian Tismer Date: Tue, 5 Dec 2017 14:17:18 +0100 Subject: testrunner 4: Improve the error listing A simple change that makes the "FAIL!" entries easy to find. Task-number: PYSIDE-578 Change-Id: I953bf94912f101208c1cddb7772aa0c34e9ca1a8 Reviewed-by: Friedemann Kleint --- testing/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/parser.py') diff --git a/testing/parser.py b/testing/parser.py index e4b1bc013..6c0d2af6f 100644 --- a/testing/parser.py +++ b/testing/parser.py @@ -143,7 +143,7 @@ class TestParser(object): if match: res = "BFAIL" else: - res = "FAIL" + res = "FAIL!" else: if match: res = "BPASS" -- cgit v1.2.3