Skip to content

Commit 072e7a3

Browse files
[3.13] pythongh-125620: Skip check_resource_tracker_death on NetBSD due to long wait for SIGKILL process termination (pythonGH-125621) (python#125672)
pythongh-125620: Skip check_resource_tracker_death on NetBSD due to long wait for SIGKILL process termination (pythonGH-125621) * Skip test_resource_tracker_sigkill on NetBSD (cherry picked from commit a0f5c8e) Co-authored-by: Furkan Onder <[email protected]>
1 parent e57831f commit 072e7a3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/_test_multiprocessing.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5747,6 +5747,8 @@ def test_resource_tracker_sigterm(self):
57475747
# Catchable signal (ignored by semaphore tracker)
57485748
self.check_resource_tracker_death(signal.SIGTERM, False)
57495749

5750+
@unittest.skipIf(sys.platform.startswith("netbsd"),
5751+
"gh-125620: Skip on NetBSD due to long wait for SIGKILL process termination.")
57505752
def test_resource_tracker_sigkill(self):
57515753
# Uncatchable signal.
57525754
self.check_resource_tracker_death(signal.SIGKILL, True)

0 commit comments

Comments
 (0)