diff options
author | R. David Murray <rdmurray@bitdance.com> | 2009-07-09 20:12:31 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2009-07-09 20:12:31 (GMT) |
commit | 414c91f7e4917657806e6f80ad19cc752907ff2c (patch) | |
tree | 1ed3ab3f07fefc12407b5d420fbcb954e87ef2ae /Lib/test/test_posix.py | |
parent | 4e15f803b1fa44b3579cc6e830dcbb2907e4798d (diff) | |
download | cpython-414c91f7e4917657806e6f80ad19cc752907ff2c.zip cpython-414c91f7e4917657806e6f80ad19cc752907ff2c.tar.gz cpython-414c91f7e4917657806e6f80ad19cc752907ff2c.tar.bz2 |
Merged revisions 73907-73908 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73907 | r.david.murray | 2009-07-09 12:17:30 -0400 (Thu, 09 Jul 2009) | 4 lines
Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see
if the test gives useful failure info on Solaris buildbot.
........
r73908 | r.david.murray | 2009-07-09 14:41:03 -0400 (Thu, 09 Jul 2009) | 6 lines
Try to fix Solaris buildbot rmtree failure in test_getcwd_long_pathnames
cleanup. If this fix works, it means that Solaris is unique among
our platforms in what happens when shutil.rmtree is called on the
current working directory (ie: it doesn't work on Solaris, but
it does everywhere else).
........
Diffstat (limited to 'Lib/test/test_posix.py')
-rw-r--r-- | Lib/test/test_posix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index 294b302..2047e52 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -248,8 +248,8 @@ class PosixTester(unittest.TestCase): _create_and_do_getcwd(dirname) finally: - support.rmtree(base_path) os.chdir(curdir) + support.rmtree(base_path) def test_main(): |