X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-areadlinkat-with-size.c;h=f709ea825b45c28ce0cbd6f1b88061f1aa53accc;hb=833bff3a531e4730779f8c7be1d9f7c471e6f221;hp=43715d01f568faf267aee23d9f24846f70d86069;hpb=daa06b9967f5f51ec03169000be233b37887287b;p=gnulib.git diff --git a/tests/test-areadlinkat-with-size.c b/tests/test-areadlinkat-with-size.c index 43715d01f..f709ea825 100644 --- a/tests/test-areadlinkat-with-size.c +++ b/tests/test-areadlinkat-with-size.c @@ -1,5 +1,5 @@ /* Tests of areadlinkat_with_size. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009, 2010 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,17 +29,8 @@ #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-areadlinkat-with-size.t" @@ -55,12 +46,12 @@ do_areadlinkat_with_size (char const *name, size_t size) } int -main () +main (void) { int result; /* Remove any leftovers from a previous partial run. */ - ASSERT (system ("rm -rf " BASE "*") == 0); + ignore_value (system ("rm -rf " BASE "*")); /* Basic tests. */ result = test_areadlink (do_areadlinkat_with_size, false); @@ -70,7 +61,7 @@ main () /* Relative tests. */ if (result == 77) - fputs ("skipping test: symlinks not supported on this filesystem\n", + fputs ("skipping test: symlinks not supported on this file system\n", stderr); else {