Move the require './test.pl' to the end of t/comp/hints.t
[p5sagit/p5-mst-13.2.git] / t / harness
index a70c8be..88a7bfa 100644 (file)
--- a/t/harness
+++ b/t/harness
@@ -160,7 +160,6 @@ if (@ARGV) {
        use Config;
        push @last,  sort { lc $a cmp lc $b }
            _tests_from_manifest($Config{extensions}, $Config{known_extensions});
-       push @last, <pod/*.t>;
        push @last, <x2p/*.t>;
 
        my %times;
@@ -257,5 +256,5 @@ $h->callback(
             }
             );
 
-$h->runtests(@tests);
-exit(0);
+my $agg = $h->runtests(@tests);
+exit $agg->has_errors ? 1 : 0;