X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-strverscmp.c;h=1498ccb573b714ae380b8d96beecc7a23235b2be;hb=b0b422614cc9fda29e9675dcc6f2a377b3d517a8;hp=605b0f6d185b0ff15317f5d51077e7b78563fc94;hpb=63dfe7d84d88032b190b9d22d545933a7aceb2a8;p=gnulib.git diff --git a/tests/test-strverscmp.c b/tests/test-strverscmp.c index 605b0f6d1..1498ccb57 100644 --- a/tests/test-strverscmp.c +++ b/tests/test-strverscmp.c @@ -1,5 +1,5 @@ /* Test of strverscmp() function. - Copyright (C) 2008 Free Software Foundation, Inc. + Copyright (C) 2008-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 @@ -12,32 +12,21 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program; if not, see . */ /* Written by Eric Blake , 2008. */ #include -#include "strverscmp.h" +#include -#include -#include +#include "signature.h" +SIGNATURE_CHECK (strverscmp, int, (const char *, const char *)); -#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) +main (void) { ASSERT (strverscmp ("", "") == 0); ASSERT (strverscmp ("a", "a") == 0);