At 01:05 AM 4/30/2002 -0400, Michael G Schwern wrote: >WRT to VMS tests, the problem was Test::Harness made a special case to >display native VMS exit codes rather than do POSIX emulation. >Test::Harness::Straps didn't emulate this until just now. Is this the >desired behavior?
If you use the POSIX emulation, (which is what $? does by default) you will only see the following values: 0 = success 1 = warning 2 = error 4 = fatal error If you need more than those, you can do so via the "use vmsish 'exit'" and "use vmsish 'status'" pragmas, but in that case you won't see everything shifted up by 8 bits like POSIX statuses are.
