Skip to content

Commit 0bb3c7a

Browse files
committed
fixup ???
1 parent 364220c commit 0bb3c7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1473,11 +1473,11 @@ def find_processes():
14731473
processes = find_processes()
14741474

14751475
for process in processes:
1476+
if process.torndown:
1477+
continue # already seen this one
14761478
ecode = process.poll()
14771479
if ecode is None:
14781480
continue # still running
1479-
if process.torndown:
1480-
continue # already seen this one
14811481
if ecode in (-signal.SIGSEGV, -signal.SIGABRT, 128 + signal.SIGSEGV, 128 + signal.SIGABRT):
14821482
print("process crashed")
14831483
process.teardown() # need to get logs!!!

0 commit comments

Comments
 (0)