X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Frun.perl;h=017ca3e82c72be9f2e0665be26121129b3f9ac75;hb=cffc7d4fc1c36169654f8447b23b3c5c43830eed;hp=9f987a6f8df7600a70c12bcd3d5e0c6b0fd042f6;hpb=7321c78ebdcaa7ce5f0f8383e07429827da0b718;p=public-inbox.git diff --git a/t/run.perl b/t/run.perl index 9f987a6f..017ca3e8 100755 --- a/t/run.perl +++ b/t/run.perl @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 2019 all contributors +# Copyright (C) 2019-2020 all contributors # License: AGPL-3.0+ # # Parallel test runner which preloads code and reuses worker processes @@ -26,7 +26,7 @@ GetOptions('j|jobs=i' => \$jobs, 'log=s' => \$log_suffix, 's|shuffle' => \$shuffle, ) or die "Usage: $0 [-j JOBS] [--log=SUFFIX] [--repeat RUNS]"; -if (($ENV{TEST_RUN_MODE} // 1) == 0) { +if (($ENV{TEST_RUN_MODE} // 2) == 0) { die "$0 is not compatible with TEST_RUN_MODE=0\n"; } my @tests = scalar(@ARGV) ? @ARGV : glob('t/*.t');