X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-vasnprintf-posix2.c;h=1c8a58bc2dc11a9998fa2b8167242a7a39cea59e;hb=fa1db0dd22768f09a507674a30beb5b8a87bb35f;hp=e8acf01f098ecb5bae3bacf97fd3059ef06715f8;hpb=e220635fc952c63b533873f2af39ec76aed4b4e3;p=gnulib.git diff --git a/tests/test-vasnprintf-posix2.c b/tests/test-vasnprintf-posix2.c index e8acf01f0..1c8a58bc2 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-2008 Free Software Foundation, Inc. + Copyright (C) 2007-2013 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,21 +21,10 @@ #include "vasnprintf.h" #include -#include #include #include -#define ASSERT(expr) \ - do \ - { \ - if (!(expr)) \ - { \ - fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ - fflush (stderr); \ - abort (); \ - } \ - } \ - while (0) +#include "macros.h" int main (int argc, char *argv[]) @@ -50,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); } @@ -63,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); }