BIND 10 trac2856, updated. a84352bebaacb3f414e5a01b1b25a3c7d3e50bbf [2856] Check complete_update() return value
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Jul 8 12:22:53 UTC 2013
The branch, trac2856 has been updated
via a84352bebaacb3f414e5a01b1b25a3c7d3e50bbf (commit)
from d4fba54ddee752b447164bbed089735f2999f28b (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 a84352bebaacb3f414e5a01b1b25a3c7d3e50bbf
Author: Mukund Sivaraman <muks at isc.org>
Date: Mon Jul 8 17:52:23 2013 +0530
[2856] Check complete_update() return value
-----------------------------------------------------------------------
Summary of changes:
.../python/isc/memmgr/tests/datasrc_info_tests.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/memmgr/tests/datasrc_info_tests.py b/src/lib/python/isc/memmgr/tests/datasrc_info_tests.py
index 9e36647..e81f89c 100644
--- a/src/lib/python/isc/memmgr/tests/datasrc_info_tests.py
+++ b/src/lib/python/isc/memmgr/tests/datasrc_info_tests.py
@@ -182,9 +182,10 @@ class TestSegmentInfo(unittest.TestCase):
self.__si_to_synchronizing_state()
self.assertRaises(SegmentInfoError, self.__sgmt_info.complete_update)
- # in COPYING state with no events
+ # in COPYING state
self.__si_to_copying_state()
- self.__sgmt_info.complete_update()
+ e = self.__sgmt_info.complete_update()
+ self.assertIsNone(e)
self.assertEqual(self.__sgmt_info.get_state(), SegmentInfo.READY)
def test_sync_reader_when_ready(self):
More information about the bind10-changes
mailing list