diff options
author | 2016-01-20 15:32:22 +0200 | |
---|---|---|
committer | 2016-01-20 15:32:22 +0200 | |
commit | 1d8c0a97f418555058efd9b149b1fec0cb808eb7 (patch) | |
tree | 0b0469282684d5d97f8aca477f69c3d60d29ef4b /scripts/automation/regression/aggregate_results.py | |
parent | fbbbb8fe6025da27ee3d703c3803e07cb7ecfd51 (diff) | |
parent | 0798c924dfcdfcf0c02ae74136013daa5d7d16f4 (diff) |
merge
Diffstat (limited to 'scripts/automation/regression/aggregate_results.py')
-rwxr-xr-x | scripts/automation/regression/aggregate_results.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/automation/regression/aggregate_results.py b/scripts/automation/regression/aggregate_results.py index 71c4c9f8..0ef3b5af 100755 --- a/scripts/automation/regression/aggregate_results.py +++ b/scripts/automation/regression/aggregate_results.py @@ -18,9 +18,12 @@ def pad_tag(text, tag): return '<%s>%s</%s>' % (tag, text, tag) def is_functional_test_name(testname): - if testname.startswith('platform_') or testname.startswith('misc_methods_'): - return True - return False + #if testname.startswith(('platform_', 'misc_methods_', 'vm_', 'payload_gen_', 'pkt_builder_')): + # return True + #return False + if testname.startswith('unit_tests.'): + return False + return True def is_good_status(text): return text in ('Successful', 'Fixed', 'Passed', 'True', 'Pass') |