From: Bruno Haible Date: Sun, 16 Nov 2008 11:59:38 +0000 (+0100) Subject: Avoid test failure on Haiku. X-Git-Tag: v0.1~6671 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=a49d3dade57695086cbf6a4030ed03c739c74d80;p=gnulib.git Avoid test failure on Haiku. --- diff --git a/ChangeLog b/ChangeLog index 57ef40afb..9a35b6051 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-11-16 Bruno Haible + + Avoid test failure on Haiku. + * tests/test-fsync.c: Include . + (main): Don't require that fsync (0) fails. + 2008-11-15 Bruno Haible New module 'hostent'. diff --git a/tests/test-fsync.c b/tests/test-fsync.c index 26219dab4..b6ffe2a4c 100644 --- a/tests/test-fsync.c +++ b/tests/test-fsync.c @@ -15,6 +15,8 @@ along with this program. If not, see . */ #include + +#include #include #include #include @@ -37,7 +39,8 @@ main () int fd; const char *file = "test-fsync.txt"; - ASSERT (fsync (0) != 0); + if (fsync (0) != 0) + ASSERT (errno == EINVAL); fd = open (file, O_WRONLY|O_CREAT|O_TRUNC, 0644); ASSERT (0 <= fd); ASSERT (write (fd, "hello", 5) == 5);