SERVER-45342 Send an abort signal instead of a kill signal when archiving

This commit is contained in:
Carl Worley
2020-01-09 15:40:39 +00:00
committed by evergreen
parent 229ef29d16
commit 041ca73b9b
16 changed files with 117 additions and 55 deletions

View File

@@ -42,7 +42,7 @@ class CPPLibfuzzerTestCase(interface.ProcessTestCase):
self.return_code = process.wait(self.DEFAULT_TIMEOUT.total_seconds())
except subprocess.TimeoutExpired:
# If the test timeout, then no errors were detected. Thus, the return code should be 0.
process.stop(kill=True)
process.stop(mode=interface.TerminationMode.KILL)
process.wait()
self.logger.info("%s timed out. No errors were found.", self.short_description())
self.return_code = 0