Don't test O_RDONLY case in tst-aio7.

This commit is contained in:
Roland McGrath 2013-04-16 12:11:26 -07:00
parent 4856bcd2df
commit e913141d5f
2 changed files with 6 additions and 16 deletions

View File

@ -1,3 +1,8 @@
2013-04-16 Roland McGrath <roland@hack.frob.com>
* rt/tst-aio7.c (do_test): Don't test O_RDONLY fd case, which is now
considered kosher.
2013-04-16 Siddhesh Poyarekar <siddhesh@redhat.com>
* benchtests/Makefile: Include cppflags-iterator.mk to add

View File

@ -78,7 +78,7 @@ do_test (void)
puts ("aio_cancel( -1, {-2..} ) did not return -1 or errno != EBADF");
}
/* Test for aio_fsync() detecting bad fd, and fd not open for writing. */
/* Test for aio_fsync() detecting bad fd. */
{
struct aiocb cb;
int fd = -1;
@ -98,21 +98,6 @@ do_test (void)
puts ("aio_fsync( op, {-1..} ) did not return -1 or errno != EBADF");
++result;
}
if ((fd = open ("/dev/null", O_RDONLY)) < 0)
error (1, errno, "opening /dev/null");
cb.aio_fildes = fd;
errno = 0;
/* Case two: valid fd but open for read only. */
if (aio_fsync (O_SYNC, &cb) != -1 || errno != EBADF)
{
puts ("aio_fsync( op, {RO..} ) did not return -1 or errno != EBADF");
++result;
}
close (fd);
}
/* Test for aio_suspend() suspending even if completed elements in list. */