tests: Fix 'unexpected exit' detection in parallel-vm.py
Now that parallel-vm.py is actually stopping VMs as soon as they are not
needed for retries, it is not really an unexpected exit to see a VM exit
while test cases remain in the queue as long as at least that many VMs
remain running. Get rid of confusing 'unexpected exit' status from the
UI in such cases.
Fixes: 4aaddecdd8
("tests: Handle test retries through the same queue")
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
81121319a9
commit
9dc07a1d55
1 changed files with 8 additions and 3 deletions
|
@ -196,9 +196,14 @@ def show_progress(scr):
|
|||
logger.info("VM[%d] kernel panic" % i)
|
||||
updated = True
|
||||
if test_queue:
|
||||
scr.addstr("unexpected exit")
|
||||
logger.info("VM[%d] unexpected exit" % i)
|
||||
updated = True
|
||||
num_vm = 0
|
||||
for i in range(num_servers):
|
||||
if vm[i]['proc']:
|
||||
num_vm += 1
|
||||
if len(test_queue) > num_vm:
|
||||
scr.addstr("unexpected exit")
|
||||
logger.info("VM[%d] unexpected exit" % i)
|
||||
updated = True
|
||||
continue
|
||||
|
||||
running = True
|
||||
|
|
Loading…
Reference in a new issue