mirror of https://github.com/xemu-project/xemu.git
tests/vm: Display remaining seconds to wait for a VM to start
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20181013004034.6968-5-f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Fam Zheng <famz@redhat.com>
This commit is contained in:
parent
071cf5a420
commit
f5d3d21847
|
@ -177,11 +177,14 @@ class BaseVM(object):
|
||||||
|
|
||||||
def wait_ssh(self, seconds=300):
|
def wait_ssh(self, seconds=300):
|
||||||
starttime = datetime.datetime.now()
|
starttime = datetime.datetime.now()
|
||||||
|
endtime = starttime + datetime.timedelta(seconds=seconds)
|
||||||
guest_up = False
|
guest_up = False
|
||||||
while (datetime.datetime.now() - starttime).total_seconds() < seconds:
|
while datetime.datetime.now() < endtime:
|
||||||
if self.ssh("exit 0") == 0:
|
if self.ssh("exit 0") == 0:
|
||||||
guest_up = True
|
guest_up = True
|
||||||
break
|
break
|
||||||
|
seconds = (endtime - datetime.datetime.now()).total_seconds()
|
||||||
|
logging.debug("%ds before timeout", seconds)
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
if not guest_up:
|
if not guest_up:
|
||||||
raise Exception("Timeout while waiting for guest ssh")
|
raise Exception("Timeout while waiting for guest ssh")
|
||||||
|
|
Loading…
Reference in New Issue