X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-unlink.c;h=ce340f2ac71ca2cd5851c046274ebc2748929b0d;hb=76bcf6213d2a5a01dd56c0d1235bfdad4dd7ecf2;hp=ffc360da049038ec8c3608b1a492a76e6a79b775;hpb=89ae4589dd58d12e7cbcf0e92c1d828c1e430f97;p=gnulib.git diff --git a/tests/test-unlink.c b/tests/test-unlink.c index ffc360da0..ce340f2ac 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-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 @@ -32,18 +32,8 @@ SIGNATURE_CHECK (unlink, int, (char const *)); #include #include "unlinkdir.h" - -#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-unlink.t" @@ -52,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); }