X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-readlink.c;h=3da5fbf69eafb75171783c16e3d7d5225f899c0d;hb=a64f669549a2ed455e99e313d6207a3711e5e5bd;hp=4ec0fcdf73a0be58b4571da1cc32ec6cfc1bbbe1;hpb=987e5651e8d1c5aa933c9ce88562806af4093702;p=gnulib.git diff --git a/tests/test-readlink.c b/tests/test-readlink.c index 4ec0fcdf7..3da5fbf69 100644 --- a/tests/test-readlink.c +++ b/tests/test-readlink.c @@ -1,5 +1,5 @@ /* Tests of readlink. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-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 @@ -31,6 +31,7 @@ SIGNATURE_CHECK (readlink, ssize_t, (char const *, char *, size_t)); #include #include +#include "ignore-value.h" #include "macros.h" #define BASE "test-readlink.t" @@ -41,7 +42,7 @@ int main (void) { /* Remove any leftovers from a previous partial run. */ - ASSERT (system ("rm -rf " BASE "*") == 0); + ignore_value (system ("rm -rf " BASE "*")); return test_readlink (readlink, true); }