artist has asked for the wisdom of the Perl Monks concerning the following question:

Hi Monks,

When I install IPC::Run, 'make test' appears to hang up after the line,
't/pty...............ok 25/32'.
I am running SCO.
. I checked the documentation and this platform is not in the list of the supported one.
What are my options..
Thanks,
Aritst

Replies are listed 'Best First'.
Re: Installing IPC::Run
by chromatic (Archbishop) on Oct 16, 2001 at 01:45 UTC
    Several options:
    • Interrupt the test at that point. The harness should catch it.
    • Run the test manually (perl t/pty.t) and capture the output. It may give you a better idea of what's going on.
    • If that's the only test that fails, install it anyway.
    • Send any failure messages to the author.
    • Optionally, fix the error yourself (by looking in the test), and send the author a patch. :)
    If you can swing the last option, do it. Otherwise, it's probably just an unportable assumption on the author's part. (Getting terminal stuff right across platforms is tough, though SCO should be a lot closer to POSIX than either Win32 or MacOS.)