This patch adds marconi to enabled services. This is needed to run
the tempest experimental job for marconi.
Change-Id: I28794c3acacc6daa9f698f8031b58d1ee13c3bad
Implements: blueprint add-basic-marconi-tests
| ... | ... |
@@ -58,6 +58,13 @@ TEMPEST_SERVICES+=,marconi |
| 58 | 58 |
# Functions |
| 59 | 59 |
# --------- |
| 60 | 60 |
|
| 61 |
+# Test if any Marconi services are enabled |
|
| 62 |
+# is_marconi_enabled |
|
| 63 |
+function is_marconi_enabled {
|
|
| 64 |
+ [[ ,${ENABLED_SERVICES} =~ ,"marconi-" ]] && return 0
|
|
| 65 |
+ return 1 |
|
| 66 |
+} |
|
| 67 |
+ |
|
| 61 | 68 |
# cleanup_marconi() - Remove residual data files, anything left over from previous |
| 62 | 69 |
# runs that a clean run would need to clean up |
| 63 | 70 |
function cleanup_marconi() {
|