BIND 10 trac2430, updated. ada4354704ee0e4c0b088d57b4a04c219d7e8031 [2430] Fix uppercase nibble test
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Feb 3 15:17:01 UTC 2014
The branch, trac2430 has been updated
via ada4354704ee0e4c0b088d57b4a04c219d7e8031 (commit)
from 79c9b75382ddd24872d3eb4b23a354c24cb04087 (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 ada4354704ee0e4c0b088d57b4a04c219d7e8031
Author: Mukund Sivaraman <muks at isc.org>
Date: Mon Feb 3 20:46:28 2014 +0530
[2430] Fix uppercase nibble test
(Was broken due to a bad copy and paste.)
-----------------------------------------------------------------------
Summary of changes:
src/lib/dns/tests/master_loader_unittest.cc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dns/tests/master_loader_unittest.cc b/src/lib/dns/tests/master_loader_unittest.cc
index 037564b..50fb94a 100644
--- a/src/lib/dns/tests/master_loader_unittest.cc
+++ b/src/lib/dns/tests/master_loader_unittest.cc
@@ -522,7 +522,7 @@ TEST_F(MasterLoaderTest, generateWithModifiers) {
// number of labels as width=8 above.
"$GENERATE 94-96 ${0,7,n} A 192.0.2.$\n"
// Uppercase nibble
- "$GENERATE 98-98 ${0,10,n} A 192.0.2.$\n"
+ "$GENERATE 98-98 ${0,10,N} A 192.0.2.$\n"
// Junk type will not parse and 'd' is assumed.
"$GENERATE 100-101 host${0,4,j} A 192.0.2.$\n";
stringstream ss(input);
@@ -558,8 +558,8 @@ TEST_F(MasterLoaderTest, generateWithModifiers) {
checkRR("b.5.0.0.example.org", RRType::A(), "192.0.2.91");
checkRR("c.5.0.0.example.org", RRType::A(), "192.0.2.92");
- checkRR("e.5.0.0.example.org", RRType::A(), "192.0.2.94");
- checkRR("f.5.0.0.example.org", RRType::A(), "192.0.2.95");
+ checkRR("E.5.0.0.example.org", RRType::A(), "192.0.2.94");
+ checkRR("F.5.0.0.example.org", RRType::A(), "192.0.2.95");
checkRR("0.6.0.0.example.org", RRType::A(), "192.0.2.96");
checkRR("2.6.0.0.0.example.org", RRType::A(), "192.0.2.98");
More information about the bind10-changes
mailing list