regression: fix some output quirks.

This commit is contained in:
Solomon Peachy 2018-10-22 22:27:55 -04:00
parent d37bae36e7
commit 0e579be2d0
1 changed files with 2 additions and 3 deletions

View File

@ -60,7 +60,7 @@ if (!defined($ARGV[0])) {
die ("need a csv file\n");
};
if (defined($ENV{"STP_VERBOSE"})) {
$quiet = $ENV{"STP_VERBOSE"};
$quiet = !$ENV{"STP_VERBOSE"};
};
if (defined($ENV{"STP_PARALLEL"})) {
$proc_count = $ENV{"STP_PARALLEL"};
@ -238,9 +238,8 @@ if ($proc_count > 1 && $kid > 0) {
next;
}
}
print "***** $row[0] $row[1] $row[2] $row[3] $row[4] '$row[5]' PASS\n";
}
print "***** $row[0] $row[1] $row[2] $row[3] $row[4] '$row[5]' PASS\n";
unlink ("${work_dir}$currow-${gp_name}.pdf");
unlink ("${work_dir}$currow-${gp_name}.raster");