projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e0c95ad
)
Py3 fix in test runner
author
Stefan Behnel
<scoder@users.berlios.de>
Sun, 5 Dec 2010 09:35:00 +0000
(10:35 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Sun, 5 Dec 2010 09:35:00 +0000
(10:35 +0100)
runtests.py
patch
|
blob
|
history
diff --git
a/runtests.py
b/runtests.py
index 8a2b9cd1671e2f81e8e5d3fb72822ccefb5975c5..5f798757452daf966dc63484686a789a2c0d183e 100644
(file)
--- a/
runtests.py
+++ b/
runtests.py
@@
-743,9
+743,9
@@
class EndToEndTest(unittest.TestCase):
out, err = p.communicate()
res = p.returncode
if res != 0:
- print
command
- print
out
- print
err
+ print
(command)
+ print
(out)
+ print
(err)
else:
res = os.system(command)
self.assertEqual(0, res, "non-zero exit status")