if($leak) {
logmsg "\n** MEMORY FAILURE\n";
logmsg @memdata;
+ logmsg " $testnum: memory FAILED\n";
# timestamp test result verification end
$timevrfyend{$testnum} = Time::HiRes::time();
return -1;
if($allocs > $lim_allocs) {
logmsg "\n** TOO MANY ALLOCS\n";
logmsg "$lim_allocs allocations allowed, did $allocs\n";
+ logmsg " $testnum: allocs FAILED\n";
# timestamp test result verification end
$timevrfyend{$testnum} = Time::HiRes::time();
return -1;
if($max > $lim_max) {
logmsg "\n** TOO MUCH TOTAL ALLOCATION\n";
logmsg "$lim_max maximum allocation allowed, did $max\n";
+ logmsg " $testnum: allocsize FAILED\n";
# timestamp test result verification end
$timevrfyend{$testnum} = Time::HiRes::time();
return -1;
my $fname = shift @notexists;
chomp $fname;
if(-e $fname) {
- logmsg "Found '$fname' when not supposed to exist.\n";
+ logmsg "ERROR: Found '$fname' when not supposed to exist.\n";
$err++;
}
elsif($verbose) {