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:
ba8f0c2
)
test: show stdout and stderr in case of non-zero exit code from "tahoe" command
author
Zooko O'Whielacronx
<zooko@zooko.com>
Mon, 24 May 2010 07:33:48 +0000
(
00:33
-0700)
committer
Zooko O'Whielacronx
<zooko@zooko.com>
Mon, 24 May 2010 07:33:48 +0000
(
00:33
-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 b543ecdb1161dfa8e0a79c1f1a039fb6b7cb4859..c617dd62fd24cf05ebb1186da59df7a7321a05ac 100644
(file)
--- a/
src/allmydata/test/test_runner.py
+++ b/
src/allmydata/test/test_runner.py
@@
-37,7
+37,7
@@
class TheRightCode(common_util.SignalMixin, unittest.TestCase, SkipMixin):
d = utils.getProcessOutputAndValue(bintahoe, args=["--version-and-path"], env=os.environ)
def _cb(res):
out, err, rc_or_sig = res
- self.failUnlessEqual(rc_or_sig, 0)
+ self.failUnlessEqual(rc_or_sig, 0
, str((out, err, rc_or_sig))
)
# Fail unless the allmydata-tahoe package is *this* version *and*
# was loaded from *this* source directory.