Skip to content

Commit

Permalink
Revert suppress @unittest.skipif...
Browse files Browse the repository at this point in the history
  • Loading branch information
YvesDup committed Oct 20, 2024
1 parent 4083a7f commit 539a32c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Lib/test/_test_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -5779,6 +5779,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)
Expand Down

0 comments on commit 539a32c

Please sign in to comment.