X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-vasnprintf-posix2.c;h=58737a6ef37012f83995077740e18a5f96fb6a45;hb=175142a8e0d3446ddb0c9709d00c5f377b4bf475;hp=167095a227754a84beaf59906a3a0b86c95eaba7;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/tests/test-vasnprintf-posix2.c b/tests/test-vasnprintf-posix2.c index 167095a22..58737a6ef 100644 --- a/tests/test-vasnprintf-posix2.c +++ b/tests/test-vasnprintf-posix2.c @@ -1,5 +1,5 @@ /* Test of POSIX compatible vasnprintf() and asnprintf() functions. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007-2011 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,20 +21,10 @@ #include "vasnprintf.h" #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 (int argc, char *argv[]) @@ -49,9 +39,9 @@ main (int argc, char *argv[]) char *result = asnprintf (NULL, &length, "%.1a", 1.0); ASSERT (result != NULL); ASSERT (strcmp (result, "0x1,0p+0") == 0 - || strcmp (result, "0x2,0p-1") == 0 - || strcmp (result, "0x4,0p-2") == 0 - || strcmp (result, "0x8,0p-3") == 0); + || strcmp (result, "0x2,0p-1") == 0 + || strcmp (result, "0x4,0p-2") == 0 + || strcmp (result, "0x8,0p-3") == 0); ASSERT (length == strlen (result)); free (result); } @@ -62,9 +52,9 @@ main (int argc, char *argv[]) char *result = asnprintf (NULL, &length, "%.1La", 1.0L); ASSERT (result != NULL); ASSERT (strcmp (result, "0x1,0p+0") == 0 - || strcmp (result, "0x2,0p-1") == 0 - || strcmp (result, "0x4,0p-2") == 0 - || strcmp (result, "0x8,0p-3") == 0); + || strcmp (result, "0x2,0p-1") == 0 + || strcmp (result, "0x4,0p-2") == 0 + || strcmp (result, "0x8,0p-3") == 0); ASSERT (length == strlen (result)); free (result); }