X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-utimens.c;h=9120ec982f17e335f0e26a998283f8b4661b21b1;hb=fa1db0dd22768f09a507674a30beb5b8a87bb35f;hp=dccaacc5e3c6f781f77f914d28b6c3de5c7afdb9;hpb=9c40f34443ba034ee7890ab10c369a903417765d;p=gnulib.git diff --git a/tests/test-utimens.c b/tests/test-utimens.c index dccaacc5e..9120ec982 100644 --- a/tests/test-utimens.c +++ b/tests/test-utimens.c @@ -1,5 +1,5 @@ /* Tests of utimens. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-2013 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 @@ -24,6 +24,7 @@ #include #include +#include "ignore-value.h" #include "macros.h" #define BASE "test-utimens.t" @@ -32,11 +33,11 @@ #include "test-lutimens.h" #include "test-utimens.h" -/* Wrap gl_futimens to behave like futimens. */ +/* Wrap fdutimens to behave like futimens. */ static int do_futimens (int fd, struct timespec const times[2]) { - return gl_futimens (fd, NULL, times); + return fdutimens (fd, NULL, times); } /* Test the use of file descriptors alongside a name. */ @@ -48,7 +49,7 @@ do_fdutimens (char const *name, struct timespec const times[2]) if (fd < 0) fd = open (name, O_RDONLY); errno = 0; - result = fdutimens (name, fd, times); + result = fdutimens (fd, name, times); if (0 <= fd) { int saved_errno = errno; @@ -66,7 +67,7 @@ main (void) int result3; /* Skip because of no lutimens support. */ /* Clean up any trash from prior testsuite runs. */ - system ("rm -rf " BASE "*"); + ignore_value (system ("rm -rf " BASE "*")); result1 = test_utimens (utimens, true); ASSERT (test_utimens (do_fdutimens, false) == result1);