Kaydet (Commit) 6fcf7cae authored tarafından 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.
üst 573399a2
......@@ -267,7 +267,8 @@ class PosixTester(unittest.TestCase):
_create_and_do_getcwd(dirname)
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)
......
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