[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: 5.96: 3 test failures on HP-UX 11.23
From: |
Jim Meyering |
Subject: |
Re: 5.96: 3 test failures on HP-UX 11.23 |
Date: |
Tue, 30 May 2006 11:13:16 +0200 |
Ralf Wildenhues <address@hidden> wrote:
> I get 3 failures on hppa2.0w-hp-hpux11.23:
Regarding this one,
> misc/close-stdout
it's because HP-UX's exec-family functions are not POSIX conforming.
As described in http://www.opengroup.org/susv3xsh/execl.html, calling
exec* with one or more of the three standard file descriptors closed,
"system implementations may open an unspecified file for each of
these file descriptors in the new process image.", but only if the
exec'd program is run set-ID.
HP-UX, however, does this even when running non-set-ID programs,
thus making what should be a write failure appear to be a successful write,
even though it's to /dev/null.