summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-07-09 16:17:30 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-07-09 16:17:30 (GMT)
commit6fcf7cae5c78a9a9e222851e63cf7dc37721b187 (patch)
treec61e1843e6524e8492d5c473519d355c807f8c4a /Lib
parent573399a2f621f6940c25579098e1d8d02d0918b9 (diff)
downloadcpython-6fcf7cae5c78a9a9e222851e63cf7dc37721b187.zip
cpython-6fcf7cae5c78a9a9e222851e63cf7dc37721b187.tar.gz
cpython-6fcf7cae5c78a9a9e222851e63cf7dc37721b187.tar.bz2
Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see
if the test gives useful failure info on Solaris buildbot.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_posix.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
index a96309d..3a3bc38 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)