mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
gh-130932: cwd cannot be removed on Solaris/Illumos (#131037)
This commit is contained in:
parent
fe186d76cf
commit
69309a55bc
1 changed files with 1 additions and 0 deletions
|
@ -1186,6 +1186,7 @@ except ImportError as e:
|
|||
self.assertRegex(line, rb"cannot import name 'Fraction' from 'fractions' \(.*\)")
|
||||
|
||||
@unittest.skipIf(sys.platform == 'win32', 'Cannot delete cwd on Windows')
|
||||
@unittest.skipIf(sys.platform == 'sunos5', 'Cannot delete cwd on Solaris/Illumos')
|
||||
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