summaryrefslogtreecommitdiffstats
path: root/scripts/automation/regression/aggregate_results.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/automation/regression/aggregate_results.py')
-rwxr-xr-xscripts/automation/regression/aggregate_results.py9
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')