Commit 3d18b50a authored by Pablo Galindo's avatar Pablo Galindo Committed by GitHub

bpo-34685: Skip posix_spawn scheduler tests on BSD (GH-9316)

* Skip posix_spawn scheduler tests on BSD. We were already skyping similar tests as the behaviour can depend on the implementation in some cases.
parent 7372c3bb
......@@ -1659,15 +1659,17 @@ class TestPosixSpawn(unittest.TestCase):
os.environ, setsigdef=[signal.NSIG, signal.NSIG+1])
@requires_sched
@unittest.skipIf(sys.platform.startswith(('freebsd', 'netbsd')),
"bpo-34685: test can fail on BSD")
def test_setscheduler_only_param(self):
policy = os.sched_getscheduler(0)
priority = os.sched_get_priority_min(policy)
code = textwrap.dedent(f"""\
import os
import os, sys
if os.sched_getscheduler(0) != {policy}:
os.exit(101)
sys.exit(101)
if os.sched_getparam(0).sched_priority != {priority}:
os.exit(102)""")
sys.exit(102)""")
pid = posix.posix_spawn(
sys.executable,
[sys.executable, '-c', code],
......@@ -1677,15 +1679,17 @@ class TestPosixSpawn(unittest.TestCase):
self.assertEqual(os.waitpid(pid, 0), (pid, 0))
@requires_sched
@unittest.skipIf(sys.platform.startswith(('freebsd', 'netbsd')),
"bpo-34685: test can fail on BSD")
def test_setscheduler_with_policy(self):
policy = os.sched_getscheduler(0)
priority = os.sched_get_priority_min(policy)
code = textwrap.dedent(f"""\
import os
import os, sys
if os.sched_getscheduler(0) != {policy}:
os.exit(101)
sys.exit(101)
if os.sched_getparam(0).sched_priority != {priority}:
os.exit(102)""")
sys.exit(102)""")
pid = posix.posix_spawn(
sys.executable,
[sys.executable, '-c', code],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment