vmcheck/multitest: Print when we're waiting

To help debug.

Closes: #1676
Approved by: cgwalters
This commit is contained in:
Colin Walters 2018-11-15 16:44:27 +00:00 committed by Atomic Bot
parent 11ae25792c
commit ce339dff9b

View File

@ -105,6 +105,7 @@ class Host:
def flush(self): def flush(self):
if not self._p: if not self._p:
return 0 return 0
print("WAITING: {} (pid={})".format(self.test, self._p.pid))
rc = self._p.wait() rc = self._p.wait()
endtime = time.time() endtime = time.time()