Skip to content

Commit 364220c

Browse files
committed
fixup ???
1 parent 67c4747 commit 364220c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/system_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1475,7 +1475,9 @@ def find_processes():
14751475
for process in processes:
14761476
ecode = process.poll()
14771477
if ecode is None:
1478-
continue
1478+
continue # still running
1479+
if process.torndown:
1480+
continue # already seen this one
14791481
if ecode in (-signal.SIGSEGV, -signal.SIGABRT, 128 + signal.SIGSEGV, 128 + signal.SIGABRT):
14801482
print("process crashed")
14811483
process.teardown() # need to get logs!!!

0 commit comments

Comments
 (0)