BIND 10 master, updated. 62a61edffac3ebdd91fec693fe2c1a94785ddb25 Remove unwanted output to stdout during test.
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Apr 4 12:28:40 UTC 2011
The branch, master has been updated
via 62a61edffac3ebdd91fec693fe2c1a94785ddb25 (commit)
from 68b9571be6f2370798951b05968d07688e96d56d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 62a61edffac3ebdd91fec693fe2c1a94785ddb25
Author: Shane Kerr <shane at isc.org>
Date: Mon Apr 4 14:28:20 2011 +0200
Remove unwanted output to stdout during test.
-----------------------------------------------------------------------
Summary of changes:
src/bin/bind10/tests/bind10_test.py.in | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/bind10/tests/bind10_test.py.in b/src/bin/bind10/tests/bind10_test.py.in
index 68f45fb..2d58b61 100644
--- a/src/bin/bind10/tests/bind10_test.py.in
+++ b/src/bin/bind10/tests/bind10_test.py.in
@@ -639,7 +639,10 @@ class TestBrittle(unittest.TestCase):
self.exit_info = (5, 0)
bob._get_process_exit_status = self.simulated_exit
+ old_stdout = sys.stdout
+ sys.stdout = open("/dev/null", "w")
bob.reap_children()
+ sys.stdout = old_stdout
self.assertFalse(bob.runnable)
if __name__ == '__main__':
More information about the bind10-changes
mailing list