aboutsummaryrefslogtreecommitdiffstats
path: root/functest/core
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2019-03-16 19:28:11 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2019-03-16 19:28:11 +0100
commit7bc4e13a4c5409ed7d869ae5c0220feba70dbf65 (patch)
tree5bd8b9d7969dc660cc6f6a069ae2b8a19d5705b2 /functest/core
parent49dd51392ced7555c59d94a21c7b2632e4cfe8e9 (diff)
Print monit summary before running IMS testing
Change-Id: I94310aa609d2c56609e0a5f0e46932af4aee02eb Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/core')
-rw-r--r--functest/core/singlevm.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/functest/core/singlevm.py b/functest/core/singlevm.py
index 16c066ef6..521eb1484 100644
--- a/functest/core/singlevm.py
+++ b/functest/core/singlevm.py
@@ -227,12 +227,13 @@ class VmReady1(tenantnetwork.TenantNetwork1):
console = self.cloud.get_server_console(name)
self.__logger.debug("console: \n%s", console)
if re.search(regex, console):
- self.__logger.debug("regex found: ''%s' in console", regex)
+ self.__logger.debug(
+ "regex found: '%s' in console\n%s", regex, console)
return True
else:
self.__logger.debug(
- "try %s: cannot find regex '%s' in console",
- iloop + 1, regex)
+ "try %s: cannot find regex '%s' in console\n%s",
+ iloop + 1, regex, console)
time.sleep(10)
self.__logger.error("cannot find regex '%s' in console", regex)
return False