X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-areadlink-with-size.c;h=c64d55803192b896fd51144d4f42eadcb9a4c5c7;hb=0d37a2e60081400c4ecefbb106e8a1749b3de2b0;hp=2a175a5b1489a8aa5778e7b64493d1e982156be1;hpb=87e0316958ab39e52ede17dfd17f68500d153a57;p=gnulib.git diff --git a/tests/test-areadlink-with-size.c b/tests/test-areadlink-with-size.c index 2a175a5b1..c64d55803 100644 --- a/tests/test-areadlink-with-size.c +++ b/tests/test-areadlink-with-size.c @@ -1,5 +1,5 @@ /* Tests of areadlink_with_size. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-2012 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 @@ -29,27 +29,18 @@ #include #include -#define ASSERT(expr) \ - do \ - { \ - if (!(expr)) \ - { \ - fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ - fflush (stderr); \ - abort (); \ - } \ - } \ - while (0) +#include "ignore-value.h" +#include "macros.h" #define BASE "test-areadlink-with-size.t" #include "test-areadlink.h" int -main () +main (void) { /* Remove any leftovers from a previous partial run. */ - ASSERT (system ("rm -rf " BASE "*") == 0); + ignore_value (system ("rm -rf " BASE "*")); return test_areadlink (areadlink_with_size, true); }