Skip to content

Commit

Permalink
[t] Made TAP::Harness actually *run* tests during make smolder_test.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@28927 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
chromatic committed Jul 1, 2008
1 parent 71a47fd commit 28666cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion t/harness
Expand Up @@ -91,15 +91,17 @@ if ($longopts->{html}) {
eval { require TAP::Harness };
if ($@) {
Test::Harness::runtests(@tests);
exit;
}
else {
$harness = TAP::Harness->new({
verbosity => $ENV{HARNESS_VERBOSE}, merge => 0
});
$harness->runtests(@tests);
}
}

$harness->runtests(@tests);

if ($longopts->{send_to_smolder}) {
send_archive_to_smolder();
}
Expand Down

0 comments on commit 28666cf

Please sign in to comment.