Commit 6fcf7cae authored by R. David Murray's avatar R. David Murray

Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see

if the test gives useful failure info on Solaris buildbot.
parent 573399a2
...@@ -267,7 +267,8 @@ class PosixTester(unittest.TestCase): ...@@ -267,7 +267,8 @@ class PosixTester(unittest.TestCase):
_create_and_do_getcwd(dirname) _create_and_do_getcwd(dirname)
finally: finally:
shutil.rmtree(base_path) # XXX: Temporarily ignore errors to see if the test gives useful failure info on Solaris buildbot
shutil.rmtree(base_path, ignore_errors=True)
os.chdir(curdir) os.chdir(curdir)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment