tests/run-tests.py
changeset 1066 bd418e7e2d29
parent 1065 c1d229864cd3
child 1068 459c0537273b
--- a/tests/run-tests.py	Fri Apr 06 22:53:24 2012 +0200
+++ b/tests/run-tests.py	Sun Apr 29 16:58:42 2012 +0100
@@ -209,7 +209,7 @@
     if options.local:
         testdir = os.path.dirname(os.path.realpath(sys.argv[0]))
         hgbin = os.path.join(os.path.dirname(testdir), 'hg')
-        if not os.access(hgbin, os.X_OK):
+        if os.name != 'nt' and not os.access(hgbin, os.X_OK):
             parser.error('--local specified, but %r not found or not executable'
                          % hgbin)
         options.with_hg = hgbin