Browse Source

Re-enable the strchrnul and rawmemchr tests

Eric Andersen 22 years ago
parent
commit
e725137c48
1 changed files with 0 additions and 4 deletions
  1. 0 4
      test/string/string.c

+ 0 - 4
test/string/string.c

@@ -451,7 +451,6 @@ test_strchr (void)
    }
 }
 
-#if 0
 static void
 test_strchrnul (void)
 {
@@ -512,7 +511,6 @@ test_rawmemchr (void)
       }
    }
 }
-#endif
 
 static void
 test_index (void)
@@ -1334,13 +1332,11 @@ main (void)
   /* strchr.  */
   test_strchr ();
 
-#if 0
   /* strchrnul.  */
   test_strchrnul ();
 
   /* rawmemchr.  */
   test_rawmemchr ();
-#endif
 
   /* index - just like strchr.  */
   test_index ();