in reply to Re: Cpan install gets stuck installing Net OpenSSH ?
in thread Cpan install gets stuck installing Net OpenSSH ?

Actually, that looks like a Solaris box. The ssh client bundled is an old fork of OpenSSH (SUN ssh, well, now probably Oracle SSH) which is not supported by Net::OpenSSH.

Packages for the real OpenSSH may be available from Oracle or 3th party repositories.

Replies are listed 'Best First'.
Re^3: Cpan install gets stuck installing Net OpenSSH ?
by jtzako (Sexton) on Mar 11, 2016 at 19:50 UTC
    I got farther this time. No errors about missing or wrong versions of OpenSSH. But I am still getting stuck at this: Password: t/1_run.t .... skipped: Unable to establish SSH connection to localhost! t/quoting.t .. Use of uninitialized value $ENV{"LANG"} in pattern match (m//) at t/quoting.t line 17. I'm not sure what/where this env value is located or how to fix it.

      See perlvar on %ENV. It seens that in your environment, the environment variable LANG is not set. But that is just a warning and not really a cause for a failing test. As a workaround, you could run export LANG=C.

      What is the real output you get when running make test?