From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 7 Oct 2025 18:01:51 +0000 (+0200) Subject: [3.14] gh-138163: skip failures if tests are run with `SCHED_BATCH` on glibc (GH... X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7a1a79d731cea2e6384f64387be9e472b65b4e96;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-138163: skip failures if tests are run with `SCHED_BATCH` on glibc (GH-138576) (GH-138820) (cherry picked from commit 492941459acb5b5a104d96414288601d2e2b7e6f) Co-authored-by: jxes993409 <68891412+jxes993409@users.noreply.github.com> Co-authored-by: Petr Viktorin --- diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index 2af11888b17c..0bb65fe717d3 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -2036,6 +2036,12 @@ 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, + os.SCHED_DEADLINE], + "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)