]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1722] update test comment
authorJelte Jansen <jelte@isc.org>
Wed, 29 Feb 2012 12:59:15 +0000 (13:59 +0100)
committerJelte Jansen <jelte@isc.org>
Wed, 29 Feb 2012 13:04:37 +0000 (14:04 +0100)
src/lib/dns/tests/masterload_unittest.cc

index 727bff3226fc98bd47cc058e3a11faa8f3e70023..95ce6f38439d500df0bf9df0de4464a831c2a54c 100644 (file)
@@ -194,7 +194,7 @@ TEST_F(MasterLoadTest, loadRRWithCommentNoSpace) {
 }
 
 TEST_F(MasterLoadTest, loadRRWithCommentEmptyComment) {
-    // Similar to the previous one, but there's no space before comments.
+    // Similar to the previous one, but there's no data after the ;
     // It should still work.
     rr_stream << "example.com. 3600 IN DNSKEY  256 3 7 "
         "AwEAAaetidLzsKWUt4swWR8yu0wPHPiUi8LUsAD0QPWU+wzt89epO6tH "
@@ -207,7 +207,7 @@ TEST_F(MasterLoadTest, loadRRWithCommentEmptyComment) {
 }
 
 TEST_F(MasterLoadTest, loadRRWithCommentEmptyCommentNoSpace) {
-    // Similar to the previous one, but there's no space before comments.
+    // Similar to the previous one, but there's no space before or after ;
     // It should still work.
     rr_stream << "example.com. 3600 IN DNSKEY  256 3 7 "
         "AwEAAaetidLzsKWUt4swWR8yu0wPHPiUi8LUsAD0QPWU+wzt89epO6tH "
@@ -220,7 +220,7 @@ TEST_F(MasterLoadTest, loadRRWithCommentEmptyCommentNoSpace) {
 }
 
 TEST_F(MasterLoadTest, loadRRWithEOLWhitespace) {
-    // Similar to the previous one, but there's no space before comments.
+    // Test with whitespace after rdata
     // It should still work.
     rr_stream << "example.com. 3600 IN NSEC3PARAM 1 0 1 beef \n";
     masterLoad(rr_stream, origin, zclass, callback);
@@ -231,7 +231,7 @@ TEST_F(MasterLoadTest, loadRRWithEOLWhitespace) {
 }
 
 TEST_F(MasterLoadTest, loadRRWithEOLWhitespaceTab) {
-    // Similar to the previous one, but there's no space before comments.
+    // Similar to the previous one, tab instead of space.
     // It should still work.
     rr_stream << "example.com. 3600 IN NSEC3PARAM 1 0 1 beef\t\n";
     masterLoad(rr_stream, origin, zclass, callback);