Browse Source

[2442] added another case of multi-string with mixture of not-quoted + no spc.

due to limitation of the current implementation it doesn't work right now,
so commented out; planning to create a ticket to fix the underlying issue.
JINMEI Tatuya 12 years ago
parent
commit
5986149152
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/lib/dns/tests/rdata_txt_like_unittest.cc

+ 2 - 0
src/lib/dns/tests/rdata_txt_like_unittest.cc

@@ -170,6 +170,8 @@ TYPED_TEST(Rdata_TXT_LIKE_Test, createMultiStringsFromText) {
     texts.push_back("\"Test-String\" Test-String");  // no '"' for one
     texts.push_back("\"Test-String\"Test-String"); // and no space either
     texts.push_back("Test-String \"Test-String\""); // no '"' for the other
+    // This one currently doesn't work
+    //texts.push_back("Test-String\"Test-String\""); // and no space either
 
     std::stringstream ss;
     for (std::vector<std::string >::const_iterator it = texts.begin();