From: Eric Andersen Date: Fri, 8 Nov 2002 19:34:22 +0000 (-0000) Subject: Re-enable the strchrnul and rawmemchr tests X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e725137c4851185862a0959bec7249276e838f6a;p=uclinux-h8%2FuClibc.git Re-enable the strchrnul and rawmemchr tests --- diff --git a/test/string/string.c b/test/string/string.c index 70953001f..ab041e63d 100644 --- a/test/string/string.c +++ b/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 ();