On Monday, April 29, 2013 11:44:05 AM UTC-7, Aaron wrote: > > PERL_DL_NONLAZY=1 /sastore/bossert/bin/perl "-MExtUtils::Command::MM" "-e" > "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/*/*.t > t/mojo/app.t ............................... > >> >> The "strace" utility is a good way to get more information on what a process is doing, you can run something like this from the download directory
*strace -s256* perl -Iblib/lib -Iblib/arch *t/mojo/app.t* Alternatively, you can find the pid of the test script when it's hanging and attach strace to it after the fact strace -s256 -p <the pid> If strace isn't available on your system (apt-get or yum install strace is all it takes to put it there), running the same thing under the perl debugger will also get you lots of information about what the code thinks it's doing perl *-d* -Iblib/lib -Iblib/arch *t/mojo/app.t* Once that's running you can hit "t" for "trace" and "c" for "continue" and you'll see exactly what the script is doing, in great detail. -- You received this message because you are subscribed to the Google Groups "Mojolicious" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/mojolicious. For more options, visit https://groups.google.com/d/optout.
