summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_posix.py
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-06-22 16:11:34 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2008-06-22 16:11:34 (GMT)
commitb8242ba6b1ee692d3241c1035d77cd2889cacacc (patch)
tree2e2b81f38ee95266dd14ee472728083762f74be4 /Lib/test/test_posix.py
parent1461886eeebe59a87ca13471ba0a3fe04dd3c165 (diff)
downloadcpython-b8242ba6b1ee692d3241c1035d77cd2889cacacc.zip
cpython-b8242ba6b1ee692d3241c1035d77cd2889cacacc.tar.gz
cpython-b8242ba6b1ee692d3241c1035d77cd2889cacacc.tar.bz2
Trying to see if the @ in a path is causing the issue in the
shutil.rmtree() in the trunk.loewis-sun buildbot.
Diffstat (limited to 'Lib/test/test_posix.py')
-rw-r--r--Lib/test/test_posix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
index 188f4631..a6f02eb 100644
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -236,7 +236,7 @@ class PosixTester(unittest.TestCase):
if hasattr(posix, 'getcwd'):
dirname = 'getcwd-test-directory-0123456789abcdef-01234567890abcdef'
curdir = os.getcwd()
- base_path = os.path.abspath(test_support.TESTFN) + '.getcwd'
+ base_path = os.path.abspath(test_support.TESTFN[1:]) + '.getcwd'
try:
os.mkdir(base_path)