mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
GH-98023: Change default child watcher to PidfdChildWatcher on supported systems (#98024)
This commit is contained in:
parent
3d8b224547
commit
8ba9378b16
3 changed files with 29 additions and 2 deletions
|
@ -1702,7 +1702,8 @@ class PolicyTests(unittest.TestCase):
|
|||
def test_get_default_child_watcher(self):
|
||||
policy = self.create_policy()
|
||||
self.assertIsNone(policy._watcher)
|
||||
|
||||
unix_events.can_use_pidfd = mock.Mock()
|
||||
unix_events.can_use_pidfd.return_value = False
|
||||
watcher = policy.get_child_watcher()
|
||||
self.assertIsInstance(watcher, asyncio.ThreadedChildWatcher)
|
||||
|
||||
|
@ -1710,6 +1711,17 @@ class PolicyTests(unittest.TestCase):
|
|||
|
||||
self.assertIs(watcher, policy.get_child_watcher())
|
||||
|
||||
policy = self.create_policy()
|
||||
self.assertIsNone(policy._watcher)
|
||||
unix_events.can_use_pidfd = mock.Mock()
|
||||
unix_events.can_use_pidfd.return_value = True
|
||||
watcher = policy.get_child_watcher()
|
||||
self.assertIsInstance(watcher, asyncio.PidfdChildWatcher)
|
||||
|
||||
self.assertIs(policy._watcher, watcher)
|
||||
|
||||
self.assertIs(watcher, policy.get_child_watcher())
|
||||
|
||||
def test_get_child_watcher_after_set(self):
|
||||
policy = self.create_policy()
|
||||
watcher = asyncio.FastChildWatcher()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue