X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-dprintf-posix.c;h=5d0e3be74cbe5ca104fc030c2d8b7d489df90d2a;hb=533101a268dc5015a140ff4695d8eeb04fbe57b6;hp=384d1efafc5370195dc8577a36a9957ab92b8976;hpb=441aa3044f43e5572f58c354f01e6bc070acd5c7;p=gnulib.git diff --git a/tests/test-dprintf-posix.c b/tests/test-dprintf-posix.c index 384d1efaf..5d0e3be74 100644 --- a/tests/test-dprintf-posix.c +++ b/tests/test-dprintf-posix.c @@ -1,5 +1,5 @@ /* Test of POSIX compatible dprintf() function. - Copyright (C) 2007-2009 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 @@ -20,22 +20,15 @@ #include +#include "signature.h" +SIGNATURE_CHECK (dprintf, int, (int, const char *, ...)); + #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 "infinity.h" +#include "macros.h" static void test_function (int (*my_dprintf) (int, const char *, ...)) @@ -58,13 +51,13 @@ test_function (int (*my_dprintf) (int, const char *, ...)) my_dprintf (fileno (stdout), "%a %d\n", 0.0, 33, 44, 55); /* Positive infinity. */ - my_dprintf (fileno (stdout), "%a %d\n", 1.0 / 0.0, 33, 44, 55); + my_dprintf (fileno (stdout), "%a %d\n", Infinityd (), 33, 44, 55); /* Negative infinity. */ - my_dprintf (fileno (stdout), "%a %d\n", -1.0 / 0.0, 33, 44, 55); + my_dprintf (fileno (stdout), "%a %d\n", - Infinityd (), 33, 44, 55); /* FLAG_ZERO with infinite number. */ - my_dprintf (fileno (stdout), "%010a %d\n", 1.0 / 0.0, 33, 44, 55); + my_dprintf (fileno (stdout), "%010a %d\n", Infinityd (), 33, 44, 55); /* Test the support of the %f format directive. */