Signed-off-by: Michael Goldish <mgoldish@xxxxxxxxxx> --- client/tests/kvm/kvm_vm.py | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/client/tests/kvm/kvm_vm.py b/client/tests/kvm/kvm_vm.py index 0403569..a69a191 100755 --- a/client/tests/kvm/kvm_vm.py +++ b/client/tests/kvm/kvm_vm.py @@ -86,7 +86,14 @@ class VMKVMInitError(VMPostCreateError): class VMDeadError(VMError): - pass + def __init__(self, status, output): + VMError.__init__(self, status, output) + self.status = status + self.output = output + + def __str__(self): + return ("VM process is dead (status: %s, output: %r)" % + (self.status, self.output)) class VMAddressError(VMError): @@ -1016,7 +1023,8 @@ class VM: @raise: Various monitor exceptions if the monitor is unresponsive """ if self.is_dead(): - raise VMDeadError("VM is dead") + raise VMDeadError(self.process.get_status(), + self.process.get_output()) if self.monitors: self.monitor.verify_responsive() -- 1.7.3.4 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html