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 a96309d..3a3bc38 100644
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -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)