tests/run-tests.py
changeset 16890 4d95878712ad
parent 16842 a3ea092203a5
child 16897 2774576dee4d
--- a/tests/run-tests.py	Fri Jun 08 15:11:05 2012 +0200
+++ b/tests/run-tests.py	Fri Jun 08 15:11:05 2012 +0200
@@ -1246,7 +1246,12 @@
             #shutil.rmtree(tmpdir)
         os.makedirs(tmpdir)
     else:
-        tmpdir = tempfile.mkdtemp('', 'hgtests.')
+        d = None
+        if os.name == 'nt':
+            # without this, we get the default temp dir location, but
+            # in all lowercase, which causes troubles with paths (issue3490)
+            d = os.getenv('TMP')
+        tmpdir = tempfile.mkdtemp('', 'hgtests.', d)
     HGTMP = os.environ['HGTMP'] = os.path.realpath(tmpdir)
     DAEMON_PIDS = None
     HGRCPATH = None