Skip to content

Commit 9ca5b63

Browse files
committed
fixup ???
1 parent 2a429cf commit 9ca5b63

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
@@ -1474,11 +1474,11 @@ def find_processes():
14741474
processes = find_processes()
14751475

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

0 commit comments

Comments
 (0)