Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see

if the test gives useful failure info on Solaris buildbot.
This commit is contained in:
R. David Murray 2009-07-09 16:17:30 +00:00
parent 573399a2f6
commit 6fcf7cae5c
1 changed files with 2 additions and 1 deletions

View File

@ -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)