From: david-sarah Date: Sun, 25 Jul 2010 18:20:08 +0000 (-0700) Subject: test_runner.py: change to code for locating the bin/tahoe script that was missed... X-Git-Tag: allmydata-tahoe-1.8.0b2~57 X-Git-Url: https://git.rkrishnan.org/FOOURL?a=commitdiff_plain;h=1fad717aaae6382c952c120425f1297eeafea697;p=tahoe-lafs%2Ftahoe-lafs.git test_runner.py: change to code for locating the bin/tahoe script that was missed when rebasing the patch for #1074. --- diff --git a/src/allmydata/test/test_runner.py b/src/allmydata/test/test_runner.py index b5459b48..6e85a20b 100644 --- a/src/allmydata/test/test_runner.py +++ b/src/allmydata/test/test_runner.py @@ -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: