https://github.com/python/cpython/commit/a0f5c8e6272a1fd5422892d773923b138e77ae5f
commit: a0f5c8e6272a1fd5422892d773923b138e77ae5f
branch: main
author: Furkan Onder <[email protected]>
committer: gpshead <[email protected]>
date: 2024-10-17T19:08:34-07:00
summary:

gh-125620: Skip check_resource_tracker_death on NetBSD due to long wait for 
SIGKILL process termination (GH-125621)

* Skip test_resource_tracker_sigkill on NetBSD

files:
M Lib/test/_test_multiprocessing.py

diff --git a/Lib/test/_test_multiprocessing.py 
b/Lib/test/_test_multiprocessing.py
index a059a6b8340448..065fc27b770438 100644
--- a/Lib/test/_test_multiprocessing.py
+++ b/Lib/test/_test_multiprocessing.py
@@ -5761,6 +5761,8 @@ def test_resource_tracker_sigterm(self):
         # Catchable signal (ignored by semaphore tracker)
         self.check_resource_tracker_death(signal.SIGTERM, False)
 
+    @unittest.skipIf(sys.platform.startswith("netbsd"),
+                     "gh-125620: Skip on NetBSD due to long wait for SIGKILL 
process termination.")
     def test_resource_tracker_sigkill(self):
         # Uncatchable signal.
         self.check_resource_tracker_death(signal.SIGKILL, True)

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to