summaryrefslogtreecommitdiff
path: root/piglit-summary-html.py
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2012-01-28 22:52:16 -0800
committerKenneth Graunke <kenneth@whitecape.org>2012-02-13 00:18:49 -0800
commit3241e782960bb72b6bcdc8396dadcb65462ccd53 (patch)
treebfa4971f5503e435d18e4594e7de276b92cbf1df /piglit-summary-html.py
parent9455e5a8d784516d27c70285dfc3e87738cf640b (diff)
framework: Remove checking for the pre-JSON piglit file format.
It was polite to print a message shortly after the conversion, but at this point, it's basically dead code.
Diffstat (limited to 'piglit-summary-html.py')
-rwxr-xr-xpiglit-summary-html.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/piglit-summary-html.py b/piglit-summary-html.py
index 56e4449b0..974ed52ca 100755
--- a/piglit-summary-html.py
+++ b/piglit-summary-html.py
@@ -326,10 +326,7 @@ def main():
results = []
for result_dir in OptionList:
- try:
- results.append(loadresult(result_dir))
- except core.ResultFileInOldFormatError as e:
- print('warning: skipping result file because it is in old format, json is now required: file={0}'.format(e.message))
+ results.append(loadresult(result_dir))
summary = framework.summary.Summary(results)
for j in range(len(summary.testruns)):