in reply to Test::More and fork

You could try changing where Test::Builder writes to.

my $builder = Test::More->builder; # Set each of the Test::Builder output setttings $builder->output( ... ); $builder->failure_output( ... ); $builder->todo_output( ... );

Replies are listed 'Best First'.
Re^2: Test::More and fork
by cees (Curate) on Jun 23, 2005 at 00:27 UTC

    Do you have any idea how I would actually use that? I tried a few things (like redirecting all output to IO::String), but I still get the same results.

    Thanks for your input...

      I assumed telling it to write to a closed or invalid handle would enough. Or to have it write to something opened to File::Spec->devnull.
        I assumed telling it to write to a closed or invalid handle would enough. Or to have it write to something opened to File::Spec->devnull.

        Unfortunately the problem has nothing to do with test output ;-)