summaryrefslogtreecommitdiffstats
path: root/utils/test/reporting/functest/testCase.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/test/reporting/functest/testCase.py')
-rw-r--r--utils/test/reporting/functest/testCase.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/utils/test/reporting/functest/testCase.py b/utils/test/reporting/functest/testCase.py
index e40aa7f00..f77136e11 100644
--- a/utils/test/reporting/functest/testCase.py
+++ b/utils/test/reporting/functest/testCase.py
@@ -27,6 +27,7 @@ class TestCase(object):
'ocl': 'OCL',
'tempest_smoke_serial': 'Tempest (smoke)',
'tempest_full_parallel': 'Tempest (full)',
+ 'tempest_defcore': 'Tempest (Defcore)',
'rally_sanity': 'Rally (smoke)',
'bgpvpn': 'bgpvpn',
'rally_full': 'Rally (full)',
@@ -45,8 +46,8 @@ class TestCase(object):
'api_check': 'Health (api)',
'snaps_smoke': 'SNAPS',
'snaps_health_check': 'Health (dhcp)',
- 'gluon_vping': 'Netready',
- 'barometercollectd': 'Barometer'}
+ 'netready': 'Netready',
+ 'barometer': 'Barometer'}
try:
self.displayName = display_name_matrix[self.name]
except:
@@ -125,6 +126,7 @@ class TestCase(object):
'ocl': 'ocl',
'tempest_smoke_serial': 'tempest_smoke_serial',
'tempest_full_parallel': 'tempest_full_parallel',
+ 'tempest_defcore': 'tempest_defcore',
'rally_sanity': 'rally_sanity',
'bgpvpn': 'bgpvpn',
'rally_full': 'rally_full',
@@ -143,8 +145,8 @@ class TestCase(object):
'api_check': 'api_check',
'snaps_smoke': 'snaps_smoke',
'snaps_health_check': 'snaps_health_check',
- 'gluon_vping': 'gluon_vping',
- 'barometercollectd': 'barometercollectd'}
+ 'netready': 'gluon_vping',
+ 'barometer': 'barometercollectd'}
try:
return test_match_matrix[self.name]
except: