]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: fix test_runner to invoke bin/tahoe.exe instead of bin/tahoe if on Windows...
authorZooko O'Whielacronx <zooko@zooko.com>
Tue, 27 Jan 2009 21:37:17 +0000 (14:37 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Tue, 27 Jan 2009 21:37:17 +0000 (14:37 -0700)
src/allmydata/test/test_runner.py

index 1cada5292369efe8f6dab2216525baafb1a8ea1d..ec6f0dd12f46acc0d062d67d1a785fa32d630a2f 100644 (file)
@@ -4,7 +4,7 @@ from twisted.trial import unittest
 from cStringIO import StringIO
 from twisted.python import runtime
 from twisted.internet import utils
-import os.path, re
+import os.path, re, sys
 from allmydata.scripts import runner
 from allmydata.util import fileutil, pollmixin
 
@@ -12,6 +12,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":
+    bintahoe += ".exe"
 
 class TheRightCode(unittest.TestCase, common_util.SignalMixin):
     def test_path(self):