X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-filevercmp.c;h=0b348765c8e99dd36c0712e23d272624d78a29c8;hb=5068051817bc09c088f31d3627956bfe5086b130;hp=ca88eb3caf365429a3143aaa28010b0c78c965d2;hpb=cc96df30d2b27745dca763ae41940f8a1319be4c;p=gnulib.git diff --git a/tests/test-filevercmp.c b/tests/test-filevercmp.c index ca88eb3ca..0b348765c 100644 --- a/tests/test-filevercmp.c +++ b/tests/test-filevercmp.c @@ -1,5 +1,5 @@ /* Test of filevercmp() function. - Copyright (C) 2008-2009 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,27 +12,15 @@ 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 . */ #include #include "filevercmp.h" -#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" /* set of well sorted examples */ static const char *const examples[] = @@ -97,7 +85,7 @@ static const char *const examples[] = }; int -main (int argc, char **argv) +main (void) { const char *const *i; @@ -117,15 +105,15 @@ main (int argc, char **argv) { const char *const *j; for (j = examples; *j; j++) - { - int result = filevercmp (*i, *j); - if (result < 0) - ASSERT (i < j); - else if (0 < result) - ASSERT (j < i); - else - ASSERT (i == j); - } + { + int result = filevercmp (*i, *j); + if (result < 0) + ASSERT (i < j); + else if (0 < result) + ASSERT (j < i); + else + ASSERT (i == j); + } } return 0;