readlinkat tests: EBADF tests.
authorBruno Haible <bruno@clisp.org>
Tue, 20 Sep 2011 20:45:40 +0000 (22:45 +0200)
committerBruno Haible <bruno@clisp.org>
Tue, 20 Sep 2011 21:28:00 +0000 (23:28 +0200)
* tests/test-readlinkat.c (main): Add tests for EBADF.

ChangeLog
tests/test-readlinkat.c

index 05ed341..e7cb1e4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2011-09-20  Bruno Haible  <bruno@clisp.org>
 
+       readlinkat tests: EBADF tests.
+       * tests/test-readlinkat.c (main): Add tests for EBADF.
+
        symlinkat tests: EBADF tests.
        * tests/test-symlinkat.c (main): Add tests for EBADF.
 
index 1d588ac..5685934 100644 (file)
@@ -59,6 +59,18 @@ main (void)
   /* Remove any leftovers from a previous partial run.  */
   ignore_value (system ("rm -rf " BASE "*"));
 
+  /* Test behaviour for invalid file descriptors.  */
+  {
+    errno = 0;
+    ASSERT (readlinkat (-1, "foo", buf, sizeof buf) == -1);
+    ASSERT (errno == EBADF);
+  }
+  {
+    errno = 0;
+    ASSERT (readlinkat (99, "foo", buf, sizeof buf) == -1);
+    ASSERT (errno == EBADF);
+  }
+
   /* Perform same checks as counterpart functions.  */
   result = test_readlink (do_readlink, false);
   dfd = openat (AT_FDCWD, ".", O_RDONLY);