Skip to content

Commit

Permalink
Instruct the harness to ignore exit code errors for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmichaud committed Aug 8, 2009
1 parent 2db9166 commit eda5f51
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions t/harness
Expand Up @@ -56,9 +56,10 @@ if ($do_fudge) {

if (eval { require TAP::Harness; 1 }) {
my %harness_options = (
exec => ['./perl6'],
verbosity => 0+$Test::Harness::verbose,
jobs => $ENV{TEST_JOBS} || $jobs || 1,
exec => ['./perl6'],
verbosity => 0+$Test::Harness::verbose,
jobs => $ENV{TEST_JOBS} || $jobs || 1,
ignore_exit => 1,
);
TAP::Harness->new( \%harness_options )->runtests(@tfiles);
}
Expand Down

0 comments on commit eda5f51

Please sign in to comment.