X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-link.c;h=65ee9e09d7ad4fcdb716dbba210a3c3d48349954;hb=ba0163712435ee40583ee8eb0dc289220b31fa35;hp=9c1ce3621036c4092ee56e9e18a1b6fe5d951452;hpb=9c40f34443ba034ee7890ab10c369a903417765d;p=gnulib.git diff --git a/tests/test-link.c b/tests/test-link.c index 9c1ce3621..65ee9e09d 100644 --- a/tests/test-link.c +++ b/tests/test-link.c @@ -1,9 +1,9 @@ /* Test of link() function. - 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 - the Free Software Foundation; either version 2 of the License, or + the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -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); }