in reply to Re^2: make test hangs
in thread make test hangs

Have you tried to test with prove -v against just one little standard test script
#!/usr/bin/perl -w use strict; use Test::More qw( no_plan ); ok(1);
as described above to be sure that the test indeed finishes. Please do so and post the results.

Replies are listed 'Best First'.
Re^4: make test hangs
by WolliK (Acolyte) on Feb 16, 2015 at 17:00 UTC

    Hi hotpelmen,
    like I've allready replied, the warn messages will be not displayed because they are discharged by the test::harness. I've run it again with your script this small script also hangs.
    The problem is not the script !! is is the calling procedures within the TEST::HARNESS module, that is also used by the prove script.
    wollik