X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-mbscasestr2.c;h=44cd6e5877850f3b0af2a8684b3df37b30a0baa7;hb=cd56634a4a8179fd5a4419fbb3e27211b042ab1c;hp=1b9f1849c2b66319719cb8b76160ab3073dce4eb;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/tests/test-mbscasestr2.c b/tests/test-mbscasestr2.c index 1b9f1849c..44cd6e587 100644 --- a/tests/test-mbscasestr2.c +++ b/tests/test-mbscasestr2.c @@ -1,5 +1,5 @@ /* Test of searching in a string. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,19 +21,9 @@ #include #include -#include #include -#define ASSERT(expr) \ - do \ - { \ - if (!(expr)) \ - { \ - fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ - abort (); \ - } \ - } \ - while (0) +#include "macros.h" int main () @@ -77,22 +67,22 @@ main () { size_t repeat = 10000; size_t m = 1000000; - char *needle = + const char *needle = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"; char *haystack = (char *) malloc (m + 1); if (haystack != NULL) { - memset (haystack, 'a', m); - haystack[0] = '\303'; haystack[1] = '\204'; - haystack[m] = '\0'; + memset (haystack, 'a', m); + haystack[0] = '\303'; haystack[1] = '\204'; + haystack[m] = '\0'; - for (; repeat > 0; repeat--) - { - ASSERT (mbscasestr (haystack, needle) == haystack + 2); - } + for (; repeat > 0; repeat--) + { + ASSERT (mbscasestr (haystack, needle) == haystack + 2); + } - free (haystack); + free (haystack); } } @@ -101,7 +91,7 @@ main () { size_t repeat = 10000; size_t m = 1000000; - char *haystack = + const char *haystack = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" "A\303\207A\303\207A\303\207A\303\207A\303\207A\303\207A\303\207" "A\303\207A\303\207A\303\207A\303\207A\303\207A\303\207A\303\207" @@ -111,15 +101,15 @@ main () char *needle = (char *) malloc (m + 1); if (needle != NULL) { - memset (needle, 'A', m); - needle[m] = '\0'; + memset (needle, 'A', m); + needle[m] = '\0'; - for (; repeat > 0; repeat--) - { - ASSERT (mbscasestr (haystack, needle) == NULL); - } + for (; repeat > 0; repeat--) + { + ASSERT (mbscasestr (haystack, needle) == NULL); + } - free (needle); + free (needle); } } @@ -130,23 +120,21 @@ main () char *needle = (char *) malloc (m + 3); if (haystack != NULL && needle != NULL) { - const char *result; + const char *result; - memset (haystack, 'A', 2 * m); - haystack[2 * m] = '\303'; haystack[2 * m + 1] = '\247'; - haystack[2 * m + 2] = '\0'; + memset (haystack, 'A', 2 * m); + haystack[2 * m] = '\303'; haystack[2 * m + 1] = '\247'; + haystack[2 * m + 2] = '\0'; - memset (needle, 'a', m); - needle[m] = '\303'; needle[m + 1] = '\207'; - needle[m + 2] = '\0'; + memset (needle, 'a', m); + needle[m] = '\303'; needle[m + 1] = '\207'; + needle[m + 2] = '\0'; - result = mbscasestr (haystack, needle); - ASSERT (result == haystack + m); + result = mbscasestr (haystack, needle); + ASSERT (result == haystack + m); } - if (needle != NULL) - free (needle); - if (haystack != NULL) - free (haystack); + free (needle); + free (haystack); } return 0;