diff --git a/test/run_disk_tests.pl b/test/run_disk_tests.pl index e50c6f2..d955a02 100755 --- a/test/run_disk_tests.pl +++ b/test/run_disk_tests.pl @@ -6,5 +6,7 @@ use warnings; use TAP::Harness; my $harness = TAP::Harness->new( { verbosity => -2 }); -$harness->runtests( "disklist_test.pm" ); +my $res = $harness->runtests( "disklist_test.pm" ); + +exit -1 if $res->{failed};