Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e82a202

Browse files
committed
Skip test_resource_tracker_sigkill on NetBSD
1 parent a3f1610 commit e82a202

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Lib/test/_test_multiprocessing.py

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

5767+
@unittest.skipIf(sys.platform.startswith("netbsd"),
5768+
"gh-125620: Skip on NetBSD due to long wait for SIGKILL process termination.")
57675769
def test_resource_tracker_sigkill(self):
57685770
# Uncatchable signal.
57695771
self.check_resource_tracker_death(signal.SIGKILL, True)

0 commit comments

Comments
 (0)