Commit abed4d16 authored by Magnus Blåudd's avatar Magnus Blåudd

mtr.pl fixes for ndb

 - Make it possible to use MTR_MAXNDB to set the upper limit of number of
  parallel ndb test to run.
 - Very useful on machines with many cores and lots of RAM
parent 93486750
...@@ -506,8 +506,8 @@ sub run_test_server ($$$) { ...@@ -506,8 +506,8 @@ sub run_test_server ($$$) {
my $num_failed_test= 0; # Number of tests failed so far my $num_failed_test= 0; # Number of tests failed so far
# Scheduler variables # Scheduler variables
my $max_ndb= $childs / 2; my $max_ndb= $ENV{MTR_MAX_NDB} || $childs / 2;
$max_ndb = 4 if $max_ndb > 4; $max_ndb = $childs if $max_ndb > $childs;
$max_ndb = 1 if $max_ndb < 1; $max_ndb = 1 if $max_ndb < 1;
my $num_ndb_tests= 0; my $num_ndb_tests= 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment