X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-fsync.c;h=44f92bbe83988a09c8377d442ab7e160c91e24e2;hb=cd56634a4a8179fd5a4419fbb3e27211b042ab1c;hp=9565f5228ff4a1bee6dadced9cf824814e326f19;hpb=342383f377a3b6ea7d6196277c5364d32c531a02;p=gnulib.git diff --git a/tests/test-fsync.c b/tests/test-fsync.c index 9565f5228..44f92bbe8 100644 --- a/tests/test-fsync.c +++ b/tests/test-fsync.c @@ -1,5 +1,5 @@ /* Test of fsync() function. - Copyright (C) 2008-2011 Free Software Foundation, Inc. + Copyright (C) 2008-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 @@ -38,8 +38,9 @@ main (void) if (fsync (fd) != 0) { ASSERT (errno == EINVAL /* POSIX */ - || errno == ENOTSUP /* seen on MacOS X 10.5 */ + || errno == ENOTSUP /* seen on Mac OS X 10.5 */ || errno == EBADF /* seen on AIX 7.1 */ + || errno == EIO /* seen on mingw */ ); } @@ -50,6 +51,7 @@ main (void) ASSERT (errno == EBADF); } { + close (99); errno = 0; ASSERT (fsync (99) == -1); ASSERT (errno == EBADF);