Commit 584f0745 authored by Roman Donchenko's avatar Roman Donchenko

Made xls-report.py ignore tests that were not successful.

parent 0f1156bb
......@@ -52,7 +52,8 @@ def collect_xml(collection, configuration, xml_fullname):
for test in sorted(parseLogFile(xml_fullname)):
test_results = module_tests.setdefault((test.shortName(), test.param()), {})
test_results[configuration] = test.get("gmean")
if test.status == 'run':
test_results[configuration] = test.get("gmean")
def main():
arg_parser = ArgumentParser(description='Build an XLS performance report.')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment