X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-unlink.c;h=4f7de5fc6998b13ebbaa3c355d2a4e231a6c4ee6;hb=fe9ecba865a2015187a862f25ada175a5d3d8aa8;hp=15258028a5f0c52e136aa0e12628bba03eb8863b;hpb=987e5651e8d1c5aa933c9ce88562806af4093702;p=gnulib.git diff --git a/tests/test-unlink.c b/tests/test-unlink.c index 15258028a..4f7de5fc6 100644 --- a/tests/test-unlink.c +++ b/tests/test-unlink.c @@ -1,5 +1,5 @@ /* Tests of unlink. - 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 @@ -32,6 +32,7 @@ SIGNATURE_CHECK (unlink, int, (char const *)); #include #include "unlinkdir.h" +#include "ignore-value.h" #include "macros.h" #define BASE "test-unlink.t" @@ -41,5 +42,8 @@ SIGNATURE_CHECK (unlink, int, (char const *)); int main (void) { + /* Remove any leftovers from a previous partial run. */ + ignore_value (system ("rm -rf " BASE "*")); + return test_unlink_func (unlink, true); }