summaryrefslogtreecommitdiffstats
path: root/scripts/automation/regression/aggregate_results.py
diff options
context:
space:
mode:
authorHanoh Haim <hhaim@cisco.com>2016-01-20 15:32:22 +0200
committerHanoh Haim <hhaim@cisco.com>2016-01-20 15:32:22 +0200
commit1d8c0a97f418555058efd9b149b1fec0cb808eb7 (patch)
tree0b0469282684d5d97f8aca477f69c3d60d29ef4b /scripts/automation/regression/aggregate_results.py
parentfbbbb8fe6025da27ee3d703c3803e07cb7ecfd51 (diff)
parent0798c924dfcdfcf0c02ae74136013daa5d7d16f4 (diff)
merge
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')