mirror of
https://github.com/python/cpython.git
synced 2025-11-24 12:20:42 +00:00
gh-138854: Skip test_script_shadowing_stdlib_cwd_failure on AIX (GH-138855)
This commit is contained in:
parent
7c70cc5c23
commit
171f787a29
1 changed files with 1 additions and 0 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue