From: R. David Murray Date: Thu, 9 Jul 2009 16:17:30 +0000 (+0000) Subject: Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see X-Git-Tag: v2.7a1~810 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fcf7cae5c78a9a9e222851e63cf7dc37721b187;p=thirdparty%2FPython%2Fcpython.git Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see if the test gives useful failure info on Solaris buildbot. --- diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index a96309db0eaf..3a3bc38a40fc 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -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)