* tests/test-spawn-pipe-child.c (main) [HP-UX]: Don't assert that fd 2
is closed.
+2011-06-09  Bruno Haible  <bruno@clisp.org>
+
+       spawn-pipe tests: Avoid test failure on HP-UX 11.
+       * tests/test-spawn-pipe-child.c (main) [HP-UX]: Don't assert that fd 2
+       is closed.
+
 2011-06-09  Bruno Haible  <bruno@clisp.org>
 
        acl tests: Fix compilation error on HP-UX 11.
 
       ASSERT (is_open (STDERR_FILENO));
       break;
     case 1:
-      /* Expect fd 2 is closed.  */
+      /* Expect fd 2 is closed.
+         But on HP-UX 11, fd 2 gets automatically re-opened to /dev/null if it
+         was closed.  */
+#if !defined __hpux
       ASSERT (! is_open (STDERR_FILENO));
+#endif
       break;
     default:
       ASSERT (0);