Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions tools/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def Run(self, tasks) -> Dict:
raise
self.Done()
return {
'allPassed': not self.failed,
'allPassed': not self.failed and not self.shutdown_event.is_set(),
'failed': self.failed,
}

Expand Down Expand Up @@ -1843,11 +1843,12 @@ def should_keep(case):

if result['allPassed']:
print("\nAll tests passed.")
else:
elif result['failed']:
print("\nFailed tests:")
for failure in result['failed']:
print(EscapeCommand(failure.command))

else:
print("\nTest aborted.")
return exitcode


Expand Down
Loading