[Python-checkins] r73907 - python/trunk/Lib/test/test_posix.py

r.david.murray python-checkins at python.org
Thu Jul 9 18:17:30 CEST 2009


Author: r.david.murray
Date: Thu Jul  9 18:17:30 2009
New Revision: 73907

Log:
Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see
if the test gives useful failure info on Solaris buildbot.



Modified:
   python/trunk/Lib/test/test_posix.py

Modified: python/trunk/Lib/test/test_posix.py
==============================================================================
--- python/trunk/Lib/test/test_posix.py	(original)
+++ python/trunk/Lib/test/test_posix.py	Thu Jul  9 18:17:30 2009
@@ -267,7 +267,8 @@
                 _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)
 
 


More information about the Python-checkins mailing list