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

ChangeLog
tests/test-utimensat.c

index ce46a6e..b44a692 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2011-09-20  Bruno Haible  <bruno@clisp.org>
 
+       utimensat tests: EBADF tests.
+       * tests/test-utimensat.c (main): Add tests for EBADF.
+
        renameat tests: EBADF tests.
        * tests/test-renameat.c (main): Add tests for EBADF.
 
index d5b306f..c3672db 100644 (file)
@@ -69,6 +69,18 @@ main (void)
   /* Clean up any trash from prior testsuite runs.  */
   ignore_value (system ("rm -rf " BASE "*"));
 
+  /* Test behaviour for invalid file descriptors.  */
+  {
+    errno = 0;
+    ASSERT (utimensat (-1, "foo", NULL, 0) == -1);
+    ASSERT (errno == EBADF);
+  }
+  {
+    errno = 0;
+    ASSERT (utimensat (99, "foo", NULL, 0) == -1);
+    ASSERT (errno == EBADF);
+  }
+
   /* Basic tests.  */
   result1 = test_utimens (do_utimensat, true);
   result2 = test_lutimens (do_lutimensat, result1 == 0);