BIND 10 trac3095, updated. faa4cc45bb9721a6ede085bdbaaeef7d3c69b3f9 [3095] Assert that the traceback file was generated first
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Sep 12 12:59:48 UTC 2013
The branch, trac3095 has been updated
via faa4cc45bb9721a6ede085bdbaaeef7d3c69b3f9 (commit)
from 4cfee008f5fff875b90416b3318f4b8e63b8d7e3 (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 faa4cc45bb9721a6ede085bdbaaeef7d3c69b3f9
Author: Mukund Sivaraman <muks at isc.org>
Date: Thu Sep 12 18:29:34 2013 +0530
[3095] Assert that the traceback file was generated first
-----------------------------------------------------------------------
Summary of changes:
.../isc/util/tests/traceback_handler_test.py | 1 +
1 file changed, 1 insertion(+)
-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/util/tests/traceback_handler_test.py b/src/lib/python/isc/util/tests/traceback_handler_test.py
index 728b0b9..31b094a 100644
--- a/src/lib/python/isc/util/tests/traceback_handler_test.py
+++ b/src/lib/python/isc/util/tests/traceback_handler_test.py
@@ -80,6 +80,7 @@ class TracebackHandlerTest(unittest.TestCase):
def fatal(self, message, ename, exception, filename):
obj.assertTrue(isinstance(exception, Exception))
obj.assertEqual('Exception', ename)
+ obj.assertTrue(os.path.isfile(filename))
with open(filename) as f:
text = f.read()
obj.assertTrue(text.startswith('Traceback'))
More information about the bind10-changes
mailing list