From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 7 Oct 2025 18:16:55 +0000 (+0200) Subject: [3.14] gh-138854: Skip test_script_shadowing_stdlib_cwd_failure on AIX (GH-138855... X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5b64b596186806bb68c6c9f62e34ea1c2b599442;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-138854: Skip test_script_shadowing_stdlib_cwd_failure on AIX (GH-138855) (GH-139674) (cherry picked from commit 171f787a297ec4b02cfe8b3ebab8374018391f20) Co-authored-by: Furkan Onder --- diff --git a/Lib/test/test_import/__init__.py b/Lib/test/test_import/__init__.py index abbd5f1ed5f1..b71a36ec2f7a 100644 --- a/Lib/test/test_import/__init__.py +++ b/Lib/test/test_import/__init__.py @@ -1187,6 +1187,7 @@ except ImportError as e: @unittest.skipIf(sys.platform == 'win32', 'Cannot delete cwd on Windows') @unittest.skipIf(sys.platform == 'sunos5', 'Cannot delete cwd on Solaris/Illumos') + @unittest.skipIf(sys.platform.startswith('aix'), 'Cannot delete cwd on AIX') def test_script_shadowing_stdlib_cwd_failure(self): with os_helper.temp_dir() as tmp: subtmp = os.path.join(tmp, "subtmp")