in reply to Re: Selenium RC and Perl
in thread Selenium RC and Perl

Sorry if that was vague. The situation is that I am running two subtests in parallel, each having different configurations (host, browser, etc). They run at the same time so their outputs were mixed in the console. Now I want the summary report to be detailed so that I would know which particular configuration failed. Thanks.

Replies are listed 'Best First'.
Re^3: Selenium RC and Perl
by ig (Vicar) on Apr 27, 2010 at 06:10 UTC

    Maybe you can have each test script write its output to its own log file, avoiding the interleaving of outputs on the console. Maybe you can do something like what is suggested in Redirect output of Test::More/Simple.

    update: For Test::Harness, see execute_tests in Test::Harness.

Re^3: Selenium RC and Perl
by ikegami (Patriarch) on Apr 27, 2010 at 04:22 UTC

    I don't know if that's possible. Sounds to me the real problem is that you're mixing the outputs.

      Yes, I thought that it must be the real problem but I don't have any idea on how to "separate" them. I am using Thread::Pool::Simple to obtain parallelism as suggested in this article.
      SelPerl here. is the post above me a bug?