getaddrinfo: Doc fix.
[pspp] / tests / test-futimens.h
index 795aa9e56a9af3d2c0f8e0d6d20482ea1ebc1a4b..13e7d92a1b980673f5c245a8ac69252b60bf688f 100644 (file)
@@ -1,9 +1,9 @@
 /* Test of file timestamp modification functions.
-   Copyright (C) 2009 Free Software Foundation, Inc.
+   Copyright (C) 2009-2011 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
@@ -16,7 +16,7 @@
 
 #include "test-utimens-common.h"
 
-/* This file is designed to test both gl_futimens(a,NULL,b) and
+/* This file is designed to test both fdutimens(a,NULL,b) and
    futimens(a,b).  FUNC is the function to test.  Assumes that BASE
    and ASSERT are already defined.  If PRINT, warn before skipping
    tests with status 77.  */
@@ -77,6 +77,9 @@ test_futimens (int (*func) (int, struct timespec const *),
   errno = 0;
   ASSERT (func (AT_FDCWD, NULL) == -1);
   ASSERT (errno == EBADF);
+  errno = 0;
+  ASSERT (func (-1, NULL) == -1);
+  ASSERT (errno == EBADF);
   {
     struct timespec ts[2] = { { Y2K, UTIME_BOGUS_POS }, { Y2K, 0 } };
     errno = 0;