Enable setting test.pl IS_OPTIMIZED via environment variable

pull/1947/head
jsteube 5 years ago
parent e63f34b1c7
commit 0507d709f0

@ -18,6 +18,11 @@ use lib "$FindBin::Bin/test_modules";
my $IS_OPTIMIZED = 1;
if (exists $ENV{"IS_OPTIMIZED"} && defined $ENV{"IS_OPTIMIZED"})
{
$IS_OPTIMIZED = $ENV{"IS_OPTIMIZED"};
}
my $TYPES = [ 'single', 'passthrough', 'verify' ];
my $TYPE = shift @ARGV;

Loading…
Cancel
Save