diff options
author | Juha Kosonen <juha.kosonen@nokia.com> | 2016-01-28 21:40:15 +0000 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-01-29 08:30:29 +0000 |
commit | 320f9f42da31e25a41e9b7fad467394a1179a06c (patch) | |
tree | 7bf36b24cd52e8749f87f199d9572c0936e01946 /testcases/VIM/OpenStack | |
parent | d6d7ab5fe6c5c2ba63c41aa779c7b82206810df2 (diff) |
Add scenario name to Rally result message
Change-Id: I1eb6604c9ad658b65cc47c8d7d0f47717078a9fe
Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
(cherry picked from commit c269353e4027a2f8d690fc4a03315ebc93301ba7)
Diffstat (limited to 'testcases/VIM/OpenStack')
-rwxr-xr-x | testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py b/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py index d2ac62ac1..d77cd4083 100755 --- a/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py +++ b/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py @@ -277,9 +277,9 @@ def run_task(test_name): """ parse JSON operation result """ if task_succeed(json_results): - logger.info("Test OK.") + logger.info('{} test OK.'.format(test_name) + "\n") else: - logger.info("Test Failed.") + logger.info('{} test Failed.'.format(test_name) + "\n") def main(): |