From 1b801b9c352d8671cbc2772d8c3e9ffa8017c3b9 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Tue, 13 Jan 2015 14:40:47 -0800 Subject: report.py: Use the format printed by Matt's new C runner. This means you can't use run.py anymore, but "run" is so much faster that you really don't want to be using it. --- report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/report.py b/report.py index 85f8ceb..0ada56f 100755 --- a/report.py +++ b/report.py @@ -10,7 +10,7 @@ def get_results(filename): results = {} - re_match = re.compile(r"(\S*)\s*(\S*)\s*:\s*(\S*)") + re_match = re.compile(r"(\S+) - (.S \S+) shader: (\S*)") for line in lines: match = re.search(re_match, line) if match is None: -- cgit v1.2.3