Don't test O_RDONLY case in tst-aio7.
authorRoland McGrath <roland@hack.frob.com>
Tue, 16 Apr 2013 19:11:26 +0000 (12:11 -0700)
committerRoland McGrath <roland@hack.frob.com>
Tue, 16 Apr 2013 19:11:26 +0000 (12:11 -0700)
ChangeLog
rt/tst-aio7.c

index ca232e7..90d6d47 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index c156e86..b25c33c 100644 (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.  */