summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2015-01-13 14:40:47 -0800
committerKenneth Graunke <kenneth@whitecape.org>2015-01-13 14:40:47 -0800
commit1b801b9c352d8671cbc2772d8c3e9ffa8017c3b9 (patch)
treed286ebf278747fa920cf2eacbf58a5c4d75c1abb
parentf4e5cbd191d1a644a29eef3da51d4d8a4630d12a (diff)
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.
-rwxr-xr-xreport.py2
1 files changed, 1 insertions, 1 deletions
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: