diff options
Diffstat (limited to 't/harness')
-rw-r--r-- | t/harness | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -256,5 +256,5 @@ $h->callback( } ); -$h->runtests(@tests); -exit(0); +my $agg = $h->runtests(@tests); +exit $agg->has_errors ? 1 : 0; |