BIND 10 master, updated. 5f56f59e4beab346584b53e8e80973f39ced5cff Merge branch 'trac413'
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Feb 7 05:40:58 UTC 2014
The branch, master has been updated
via 5f56f59e4beab346584b53e8e80973f39ced5cff (commit)
via 9ffc91f18aa5ec78ef283a8412ed9da1a6874508 (commit)
from 064e66c1a00c6dfffe252e5e90f7f49f17accb38 (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 5f56f59e4beab346584b53e8e80973f39ced5cff
Merge: 064e66c 9ffc91f
Author: Mukund Sivaraman <muks at isc.org>
Date: Fri Feb 7 11:00:42 2014 +0530
Merge branch 'trac413'
-----------------------------------------------------------------------
Summary of changes:
src/lib/dns/tests/master_loader_unittest.cc | 15 +++++++++++++++
1 file changed, 15 insertions(+)
-----------------------------------------------------------------------
diff --git a/src/lib/dns/tests/master_loader_unittest.cc b/src/lib/dns/tests/master_loader_unittest.cc
index ce9b8f7..d520005 100644
--- a/src/lib/dns/tests/master_loader_unittest.cc
+++ b/src/lib/dns/tests/master_loader_unittest.cc
@@ -952,4 +952,19 @@ TEST_F(MasterLoaderTest, previousInInclude) {
checkARR("www.example.org");
}
+TEST_F(MasterLoaderTest, numericOwnerName) {
+ const string input("$ORIGIN example.org.\n"
+ "1 3600 IN A 192.0.2.1\n");
+ stringstream ss(input);
+ setLoader(ss, Name("example.org."), RRClass::IN(),
+ MasterLoader::MANY_ERRORS);
+
+ loader_->load();
+ EXPECT_TRUE(loader_->loadedSucessfully());
+ EXPECT_TRUE(errors_.empty());
+ EXPECT_TRUE(warnings_.empty());
+
+ checkRR("1.example.org", RRType::A(), "192.0.2.1");
+}
+
}
More information about the bind10-changes
mailing list