Skip to content

Commit 2a429cf

Browse files
committed
fixup ???
1 parent 31c7afd commit 2a429cf

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
@@ -1476,7 +1476,9 @@ def find_processes():
14761476
for process in processes:
14771477
ecode = process.poll()
14781478
if ecode is None:
1479-
continue
1479+
continue # still running
1480+
if process.torndown:
1481+
continue # already seen this one
14801482
if ecode in (-signal.SIGSEGV, -signal.SIGABRT, 128 + signal.SIGSEGV, 128 + signal.SIGABRT):
14811483
print("process crashed")
14821484
process.teardown() # need to get logs!!!

0 commit comments

Comments
 (0)