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

This commit is contained in:
Roman Donchenko 2013-06-18 12:30:05 +04:00
parent 0f1156bbb6
commit 584f0745d0

View File

@ -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.')