From 2b8ff3ca66d8ed73dece0683e6192489c1ccf75c Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 16 Sep 2025 10:27:19 +0200 Subject: [PATCH] [3.13] gh-138163: skip failures if tests are run with `SCHED_BATCH` on glibc (GH-138576) (GH-138819) (cherry picked from commit 492941459acb5b5a104d96414288601d2e2b7e6f) This backport omits SCHED_DEADLINE, which was added in 3.14. --------- Co-authored-by: jxes993409 <68891412+jxes993409@users.noreply.github.com> Co-authored-by: Petr Viktorin --- Lib/test/test_posix.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index bfc1e2b251f6..c327d2add2f1 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -1991,6 +1991,11 @@ class _PosixSpawnMixin: @requires_sched @unittest.skipIf(sys.platform.startswith(('freebsd', 'netbsd')), "bpo-34685: test can fail on BSD") + @unittest.skipIf(platform.libc_ver()[0] == 'glibc' and + os.sched_getscheduler(0) in [ + os.SCHED_BATCH, + os.SCHED_IDLE], + "Skip test due to glibc posix_spawn policy") def test_setscheduler_with_policy(self): policy = os.sched_getscheduler(0) priority = os.sched_get_priority_min(policy) -- 2.47.3