X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-fdutimensat.c;h=81ce3f5d638a0ed0bfccf403e5f79e26c71284cb;hb=1276a2c5f24c0c932426aca9c899fa524d2443f2;hp=d94667af91954860d3483b7220d17ad69283028d;hpb=89b0db35db10a8beccaf83909c7f62f127fb5821;p=gnulib.git diff --git a/tests/test-fdutimensat.c b/tests/test-fdutimensat.c index d94667af9..81ce3f5d6 100644 --- a/tests/test-fdutimensat.c +++ b/tests/test-fdutimensat.c @@ -1,5 +1,5 @@ /* Tests of fdutimensat. - Copyright (C) 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2009-2014 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 @@ -48,12 +48,17 @@ static int do_fdutimens (char const *name, struct timespec const times[2]) { int result; + int nofollow_result; + int nofollow_errno; int fd = openat (dfd, name, O_WRONLY); if (fd < 0) fd = openat (dfd, name, O_RDONLY); errno = 0; + nofollow_result = fdutimensat (fd, dfd, name, times, AT_SYMLINK_NOFOLLOW); + nofollow_errno = errno; result = fdutimensat (fd, dfd, name, times, 0); - ASSERT (fdutimensat (fd, dfd, name, times, AT_SYMLINK_NOFOLLOW) == result); + ASSERT (result == nofollow_result + || (nofollow_result == -1 && nofollow_errno == ENOSYS)); if (0 <= fd) { int saved_errno = errno;