X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-strsignal.c;h=6b90cefccfc547d161c5f8a72e8428780b2e54ff;hb=d59013190eb71a562203341f13c108365bfd8e74;hp=8868346e6fdb49249c67df897ab546e576a4e7c9;hpb=79dd80fb31df6dc6a3f68db1f8fa393a808a154b;p=gnulib.git diff --git a/tests/test-strsignal.c b/tests/test-strsignal.c index 8868346e6..6b90cefcc 100644 --- a/tests/test-strsignal.c +++ b/tests/test-strsignal.c @@ -1,5 +1,5 @@ /* Test of strsignal() function. - Copyright (C) 2008 Free Software Foundation, Inc. + Copyright (C) 2008-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 @@ -19,22 +19,14 @@ #include -#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 "signature.h" +SIGNATURE_CHECK (strsignal, char *, (int)); + +#include + +#include "macros.h" #if HAVE_DECL_SYS_SIGLIST # define ASSERT_DESCRIPTION(got, expect) @@ -44,7 +36,7 @@ #endif int -main (int argc, char **argv) +main (void) { /* Work around bug in cygwin 1.5.25 by declaring str as const char *, even though strsignal is supposed to return char *.