]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
test_runner.py: change to code for locating the bin/tahoe script that was missed...
authordavid-sarah <david-sarah@jacaranda.org>
Sun, 25 Jul 2010 18:20:08 +0000 (11:20 -0700)
committerdavid-sarah <david-sarah@jacaranda.org>
Sun, 25 Jul 2010 18:20:08 +0000 (11:20 -0700)
src/allmydata/test/test_runner.py

index b5459b48a5f0ad8389aa79523cc53ec2d76d933c..6e85a20bccb8d6ced2594aa21e053e92a941f6ef 100644 (file)
@@ -14,8 +14,8 @@ from allmydata.test import common_util
 import allmydata
 
 bintahoe = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(allmydata.__file__))), 'bin', 'tahoe')
-if sys.platform == "win32":  # TODO: should this include cygwin?
-    bintahoe += ".exe"
+if sys.platform == "win32":
+    bintahoe += ".pyscript"
 
 
 class SkipMixin: