testsuite: add --fail-any option to runtest
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>
Sun, 28 Mar 2021 17:05:10 +0000 (19:05 +0200)
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>
Sun, 28 Mar 2021 17:15:17 +0000 (19:15 +0200)
This option makes runtest's exit status !0 on any failure in any test.
(Useful in -c mode and git-bisect)

test/runtest

index 0b236bca1cb7bb07e9f506f2084b90a049e3e818..ab9b2bb95485d9eebdca21f0abf6a1138523c500 100755 (executable)
@@ -2942,6 +2942,7 @@ GetOptions(
     'valgrind' => \$valgrind,
     'range=s{2}'       => \my @range_wanted,
     'test=i@'          => \my @tests_wanted,
+    'fail-any!'        => \my $fail_any,
     'flavor|flavour=s' => \$flavour,
     'help'             => sub { pod2usage(-exit => 0) },
     'man'              => sub {
@@ -4518,7 +4519,7 @@ foreach $test (@test_list)
 ##################################################
 
 tests_exit(-1, "No runnable tests selected") if not @test_list;
-tests_exit($failures);
+tests_exit($fail_any ? $failures : 0);
 
 __END__