projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7cb41f4
)
test_runner.RunNode: pass an explicit webport, to avoid using 8123 (which might be...
author
Brian Warner
<warner@lothar.com>
Sat, 13 Oct 2007 23:06:39 +0000
(16:06 -0700)
committer
Brian Warner
<warner@lothar.com>
Sat, 13 Oct 2007 23:06:39 +0000
(16:06 -0700)
src/allmydata/test/test_runner.py
patch
|
blob
|
history
diff --git
a/src/allmydata/test/test_runner.py
b/src/allmydata/test/test_runner.py
index 80ef42c1cdf78513074d132f4e7ef36f41acb531..30b17a9a6d8bc15e456fa50fa2e27ac30451f709 100644
(file)
--- a/
src/allmydata/test/test_runner.py
+++ b/
src/allmydata/test/test_runner.py
@@
-108,7
+108,7
@@
class RunNode(unittest.TestCase, testutil.PollMixin):
raise unittest.SkipTest("twistd does not fork under windows")
basedir = self.workdir("test_client")
c1 = os.path.join(basedir, "c1")
- argv = ["--quiet", "create-client", "--basedir", c1]
+ argv = ["--quiet", "create-client", "--basedir", c1
, "--webport", "0"
]
out,err = StringIO(), StringIO()
rc = runner.runner(argv, stdout=out, stderr=err)
self.failUnlessEqual(rc, 0)