X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-link.c;h=cbb4e0b6319492e8efd8cc0a0afe5c21b3c64726;hb=f4293d352452dd3c03c81ea1e14a4d3dcd050de7;hp=17b1b82aae8e95b5e26769e3af49b9c0b8297752;hpb=8d8eda4eab3d2801251daf4eb31756c3595e2fc6;p=gnulib.git diff --git a/tests/test-link.c b/tests/test-link.c index 17b1b82aa..cbb4e0b63 100644 --- a/tests/test-link.c +++ b/tests/test-link.c @@ -1,5 +1,5 @@ /* Test of link() function. - Copyright (C) 2009, 2010 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 @@ -30,6 +30,7 @@ SIGNATURE_CHECK (link, int, (char const *, char const *)); #include #include +#include "ignore-value.h" #include "macros.h" #define BASE "test-link.t" @@ -40,7 +41,7 @@ int main (void) { /* Remove any garbage left from previous partial runs. */ - system ("rm -rf " BASE "*"); + ignore_value (system ("rm -rf " BASE "*")); return test_link (link, true); }