BIND 10 master, updated. dd61821a6c910d90c4a46024e303965048dde0aa [master] Fixed failure of termination of msgq_test.py with python3 coverage(3.3.1)
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Feb 15 02:16:21 UTC 2011
The branch, master has been updated
via dd61821a6c910d90c4a46024e303965048dde0aa (commit)
via 0e6a18e12f61cc482e07078776234f32605312e5 (commit)
via 1708a52ea3956e0e7027991f6cfeb6a1b9415b94 (commit)
via 47e53343554aa6b4323ab05799a6315fb1e42538 (commit)
from 756e56a8c683906b1b50bba5675c996fb1295820 (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 dd61821a6c910d90c4a46024e303965048dde0aa
Author: Naoki Kambe <kambe at jprs.co.jp>
Date: Tue Feb 15 11:16:04 2011 +0900
[master] Fixed failure of termination of msgq_test.py with python3 coverage(3.3.1)
commit 0e6a18e12f61cc482e07078776234f32605312e5
Merge: 756e56a8c683906b1b50bba5675c996fb1295820 1708a52ea3956e0e7027991f6cfeb6a1b9415b94
Author: Naoki Kambe <kambe at jprs.co.jp>
Date: Tue Feb 15 11:13:10 2011 +0900
Merge branch 'trac573'
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
src/bin/msgq/tests/msgq_test.py | 2 +-
2 files changed, 5 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/ChangeLog b/ChangeLog
index bcc3934..ad4e9ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+ 167. [bug] naokikambe
+ Fixed failure of termination of msgq_test.py with python3 coverage(3.3.1)
+ (Trac #573, git 0e6a18e12f61cc482e07078776234f32605312e5)
+
166. [func] jelte
The resolver now sends back a SERVFAIL when there is a client
timeout (timeout_client config setting), but it will not stop
diff --git a/src/bin/msgq/tests/msgq_test.py b/src/bin/msgq/tests/msgq_test.py
index efae151..59fcf41 100644
--- a/src/bin/msgq/tests/msgq_test.py
+++ b/src/bin/msgq/tests/msgq_test.py
@@ -132,7 +132,7 @@ class SendNonblock(unittest.TestCase):
task()
# If we got here, then everything worked well and in time
# In that case, we terminate successfully
- sys.exit()
+ sys.exit(0) # needs exit code
else:
(pid, status) = os.waitpid(task_pid, 0)
self.assertEqual(0, status,
More information about the bind10-changes
mailing list