diff options
author | Juha Kosonen <juha.kosonen@nokia.com> | 2016-01-28 21:40:15 +0000 |
---|---|---|
committer | Juha Kosonen <juha.kosonen@nokia.com> | 2016-01-28 21:40:15 +0000 |
commit | c269353e4027a2f8d690fc4a03315ebc93301ba7 (patch) | |
tree | 6a7bbff6cd629e0a22749a5ea01dacffb5612c3e /testcases/VIM | |
parent | 306ee84657d0dea1397191dd38bf6515e40debbe (diff) |
Add scenario name to Rally result message
Change-Id: I1eb6604c9ad658b65cc47c8d7d0f47717078a9fe
Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
Diffstat (limited to 'testcases/VIM')
-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(): |