~ubuntu-branches/ubuntu/raring/libvirt/raring

« back to all changes in this revision

Viewing changes to gnulib/tests/test-fdatasync.c

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-11-19 10:41:02 UTC
  • mfrom: (1.2.15) (223.1.2 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20121119104102-l6ewdppikysbzztu
Tags: 1.0.0-0ubuntu2
debian/patches/add-armhf-sysinfo-infomration.patch: Disable
to fix FTBFS on arm.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    if (fdatasync (fd) != 0)
39
39
      {
40
40
        ASSERT (errno == EINVAL /* POSIX */
41
 
                || errno == ENOTSUP /* seen on MacOS X 10.5 */
 
41
                || errno == ENOTSUP /* seen on Mac OS X 10.5 */
42
42
                || errno == EBADF /* seen on AIX 7.1 */
43
43
                || errno == EIO /* seen on mingw */
44
44
                );