# Allow all signalled processes five seconds to gracefully die.
if(defined(@signalled)) {
- my $eighths = 40;
- while($eighths--) {
+ my $twentieths = 5 * 20;
+ while($twentieths--) {
for(my $i = scalar(@signalled) - 1; $i >= 0; $i--) {
my $pid = $signalled[$i];
if(!kill(0, $pid)) {
}
}
last if(not scalar(@signalled));
- select(undef, undef, undef, 0.125);
+ select(undef, undef, undef, 0.05);
}
}
# of time until the server removes it, or the given time expires.
if($serverlogslocktimeout) {
- my $lockretry = $serverlogslocktimeout * 8;
+ my $lockretry = $serverlogslocktimeout * 20;
while((-f $SERVERLOGS_LOCK) && $lockretry--) {
- select(undef, undef, undef, 0.125);
+ select(undef, undef, undef, 0.05);
}
if(($lockretry < 0) &&
($serverlogslocktimeout >= $defserverlogslocktimeout)) {
logmsg "$txt\n";
}
- $counter = 25;
+ $counter = 10;
logmsg "\nTest definition reading and preparation time per test ".
sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
logmsg "-time- test\n";
logmsg "$txt\n";
}
- $counter = 25;
+ $counter = 15;
logmsg "\nTest server logs lock removal time per test ".
sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
logmsg "-time- test\n";
logmsg "$txt\n";
}
- $counter = 25;
+ $counter = 10;
logmsg "\nTest results verification time per test ".
sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
logmsg "-time- test\n";
}
$counter = 50;
- logmsg "\nAggregated time per test ".
+ logmsg "\nTotal time per test ".
sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
logmsg "-time- test\n";
logmsg "------ ----\n";