Signed-off-by: Michael Goldish <[email protected]>
---
client/tests/kvm/kvm_test_utils.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/client/tests/kvm/kvm_test_utils.py
b/client/tests/kvm/kvm_test_utils.py
index 39e92b9..9924232 100644
--- a/client/tests/kvm/kvm_test_utils.py
+++ b/client/tests/kvm/kvm_test_utils.py
@@ -52,10 +52,10 @@ def wait_for_login(vm, nic_index=0, timeout=240):
@param timeout: Time to wait before giving up.
@return: A shell session object.
"""
- logging.info("Waiting for guest to be up...")
+ logging.info("Waiting for guest '%s' to be up..." % vm.name)
session = kvm_utils.wait_for(lambda: vm.remote_login(nic_index=nic_index),
timeout, 0, 2)
if not session:
- raise error.TestFail("Could not log into guest")
+ raise error.TestFail("Could not log into guest '%s'" % vm.name)
logging.info("Logged in")
return session
--
1.5.4.1
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html