Browse Source

mark a failed test as DISABLED, rather than commeting it out.
trivial, skipping review.


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@2207 e5f2f494-b856-4b98-b285-d166d9295462

JINMEI Tatuya 15 years ago
parent
commit
28c40039b3
1 changed files with 2 additions and 3 deletions
  1. 2 3
      src/lib/datasrc/tests/datasrc_unittest.cc

+ 2 - 3
src/lib/datasrc/tests/datasrc_unittest.cc

@@ -852,8 +852,8 @@ TEST_F(DataSrcTest, AddRemoveDataSrc) {
     EXPECT_EQ(0, ds.dataSrcCount());
 }
 
-#if 0                           // currently fails
-TEST_F(DataSrcTest, synthesizedCnameTooLong) {
+// currently fails
+TEST_F(DataSrcTest, DISABLED_synthesizedCnameTooLong) {
     // qname has the possible max length (255 octets).  it matches a DNAME,
     // and the synthesized CNAME would exceed the valid length.
     createAndProcessQuery(
@@ -863,6 +863,5 @@ TEST_F(DataSrcTest, synthesizedCnameTooLong) {
              "0123456789abcdef0123456789abcdef0123456789a.dname.example.org."),
         RRClass::IN(), RRType::A());
 }
-#endif
 
 }