diff --git a/nodist/install_test b/nodist/install_test index 0a924cba5..fde17ac72 100755 --- a/nodist/install_test +++ b/nodist/install_test @@ -13,6 +13,7 @@ use vars qw ($Debug); # main our $Opt_Stage = 0; +our $Opt_Jobs = calc_jobs(); autoflush STDOUT 1; autoflush STDERR 1; @@ -21,11 +22,13 @@ if (! GetOptions ( "debug" => sub { $Debug = 1; }, "<>" => sub { die "%Error: Unknown parameter: $_[0]\n"; }, "stage=i" => \$Opt_Stage, + "j=i" => \$Opt_Jobs, )) { die "%Error: Bad usage, try 'install_test --help'\n"; } test(); +exit(0); ####################################################################### @@ -47,7 +50,7 @@ sub test { run("/bin/rm -rf $blddir"); run("/bin/mkdir -p $blddir"); run("cd $blddir && $srcdir/configure --prefix $prefix"); - run("cd $blddir && make -j"); + run("cd $blddir && make -j $Opt_Jobs"); } # Install it under the prefix @@ -121,6 +124,16 @@ sub cleanenv { ####################################################################### +sub calc_jobs { + my $ok = eval " + use Unix::Processors; + return Unix::Processors->new->max_online; + "; + $ok && !$@ or return 1; + print "driver.pl: Found $ok cores, using -j ",$ok+1,"\n" if $Debug; + return $ok + 1; +} + sub run { # Run a system command, check errors my $command = shift; @@ -157,6 +170,15 @@ required. Displays this message and program version and exits. +=item -j I + +Specify make -j flag. Defaults to number of cores + 1 if Perl's +Unix::Processors is installed, else 1. + +=item -stage I + +Runs a specific test stage (see the script). + =back =head1 DISTRIBUTION diff --git a/test_regress/driver.pl b/test_regress/driver.pl index 394b3693a..72c12b833 100755 --- a/test_regress/driver.pl +++ b/test_regress/driver.pl @@ -1467,7 +1467,7 @@ Displays this message and program version and exits. =item --j # Run number of parallel tests, or 0 to determine the count based on the -number of cores installed. Requires Parallel::Forker project. +number of cores installed. Requires Perl's Parallel::Forker package. =item --optimize