Pádraig Brady wrote: > > On Solaris 11.4, there are two test failures: > > > > FAIL: tests/stty/stty-row-col > > + stty rows 0x1E > + stty size > + test 'x34 80' = 'x30 80' > + fail=1 > > That's a strange error. Also I can't repro on cfarm215.cfarm.net (solaris > 11.4) > Where are you running this?
I'm running this in a VM, created from the "x86 Text Installer" that I got from https://www.oracle.com/technetwork/server-storage/solaris11/downloads/install-2245079.html I see this in the console (no X11 running): $ src/stty size 34 80 $ echo $LINES 34 $ echo $COLUMNS 80 This console is not resizable. It's always 34x80 cells large. > > FAIL: tests/dd/fail-ftruncate-fstat > > > > On Solaris 11 OpenIndiana, there is one test failure: > > > > FAIL: tests/dd/fail-ftruncate-fstat > > > -dd: cannot fstat 'out': Operation not permitted > +dd: cannot fstat 'out': Not owner > ...it would be good > to know exactly where solaris returns "Not owner" for EPERM. This test program ----------------------------------------------------- #include <errno.h> #include <stdio.h> int main () { errno = EPERM; perror (""); } ----------------------------------------------------- prints Not owner on my Solaris 11.4 VM, but prints Insufficient privileges on cfarm215.cfarm.net. So, apparently they changed the error string for EPERM at some time after the original Solaris 11.4 was released. Bruno
