X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-utimensat.c;h=d5b306f0fa369e83de1c5465a28b721fca28338b;hb=4c55ba7831f4ce8d3c7addcb20be418330a22239;hp=8dc0cc95cd5aefd13a8356c6ed9765e6d9f60c31;hpb=791cc509ac459a2555f8d633ad67455cf8d3fe4d;p=gnulib.git diff --git a/tests/test-utimensat.c b/tests/test-utimensat.c index 8dc0cc95c..d5b306f0f 100644 --- a/tests/test-utimensat.c +++ b/tests/test-utimensat.c @@ -1,5 +1,5 @@ /* Tests of utimensat. - 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 @@ -20,6 +20,10 @@ #include +#include "signature.h" +SIGNATURE_CHECK (utimensat, int, (int, char const *, struct timespec const[2], + int)); + #include #include #include @@ -31,18 +35,8 @@ #include "stat-time.h" #include "timespec.h" #include "utimecmp.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-utimensat.t" @@ -66,14 +60,14 @@ do_lutimensat (char const *name, struct timespec const times[2]) } int -main () +main (void) { int result1; /* Skip because of no symlink support. */ int result2; /* Skip because of no lutimens support. */ int fd; /* Clean up any trash from prior testsuite runs. */ - ASSERT (system ("rm -rf " BASE "*") == 0); + ignore_value (system ("rm -rf " BASE "*")); /* Basic tests. */ result1 = test_utimens (do_utimensat, true);