From 16cd19c8a2c7ceaa03312836003e40fc79915161 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 20 Feb 2015 09:48:18 -0500 Subject: [PATCH] Issue #22834: Fix a failing test under Solaris due to the platform not allowing the deletion of the cwd. Thanks to Martin Panter for the initial fix. --- Lib/test/test_importlib/import_/test_path.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_importlib/import_/test_path.py b/Lib/test/test_importlib/import_/test_path.py index 9a3c4fe877f..f257f117b47 100644 --- a/Lib/test/test_importlib/import_/test_path.py +++ b/Lib/test/test_importlib/import_/test_path.py @@ -163,8 +163,14 @@ class FinderTests: def test_deleted_cwd(self): # Issue #22834 self.addCleanup(os.chdir, os.getcwd()) - with tempfile.TemporaryDirectory() as path: - os.chdir(path) + try: + with tempfile.TemporaryDirectory() as path: + os.chdir(path) + except OSError as exc: + if exc.errno == 22: + # issue #22834 + self.skipTest("platform does not allow the deletion of the cwd") + raise with util.import_state(path=['']): # Do not want FileNotFoundError raised. self.assertIsNone(self.machinery.PathFinder.find_spec('whatever'))