in reply to Re: Redirecting the output of Test::More
in thread Redirecting the output of Test::More

There are other uses for the Test::* modules than just build tests for modules. I am using this for testing a large system and want the results to go to a file. Redirecting STDERR is somewhat of a chore as I'm on a windows box (perhaps this is the opportunity that I need to learn how to do that on windows). It just would've been nice to be able to do this in some simple way...seems that there will have to be some hackery involved. *sigh*...why can't easy things be easy? ;)

thor

Feel the white light, the light within
Be your own disciple, fan the sparks of will
For all of us waiting, your kingdom will come

  • Comment on Re^2: Redirecting the output of Test::More

Replies are listed 'Best First'.
Re^3: Redirecting the output of Test::More
by Tanktalus (Canon) on Feb 20, 2005 at 17:12 UTC

    I've been thinking about doing the same thing at work ... however, I was thinking of doing it still under the Module::Build framework so I could just Build test. And then I could "Build test > logfile.out 2>&1" to get the full output (assuming I was on unix - I can't recall how to redirect stderr and stdout to the same place on DOS/OS2/Windows).