mirror of
https://github.com/python/cpython.git
synced 2025-08-09 19:38:42 +00:00
[3.12] gh-125620: Skip check_resource_tracker_death on NetBSD due to long wait for SIGKILL process termination (GH-125621) (#125673)
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
(cherry picked from commit a0f5c8e627
)
Co-authored-by: Furkan Onder <furkanonder@protonmail.com>
This commit is contained in:
parent
232b303e4c
commit
aa9faee686
1 changed files with 2 additions and 0 deletions
|
@ -5655,6 +5655,8 @@ class TestResourceTracker(unittest.TestCase):
|
|||
# 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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue