test_runner.py: change to code for locating the bin/tahoe script that was missed when rebasing the patch for #1074.

This commit is contained in:
david-sarah 2010-07-25 11:20:08 -07:00
parent 9d04b2a317
commit 1fad717aaa

View 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: