From 58390e34b7399b399ba504299cd0bbba1941c45c Mon Sep 17 00:00:00 2001 From: jsteube Date: Wed, 27 Feb 2019 10:23:32 +0100 Subject: [PATCH] Set back default testing configuration to optimized mode --- tools/test.pl | 4 ++-- tools/test.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/test.pl b/tools/test.pl index 3bbb98f75..353d584e3 100755 --- a/tools/test.pl +++ b/tools/test.pl @@ -16,7 +16,7 @@ use List::Util 'shuffle'; # allows require by filename use lib "$FindBin::Bin/test_modules"; -my $IS_OPTIMIZED = 0; +my $IS_OPTIMIZED = 1; my $TYPES = [ 'single', 'passthrough', 'verify' ]; @@ -36,7 +36,7 @@ exists &{module_generate_hash} or die "Module function 'module_generate_hash' no exists &{module_verify_hash} or die "Module function 'module_verify_hash' not found\n"; my $giveup_at = 1000000; -my $single_outputs = 300; +my $single_outputs = 8; my $constraints = get_module_constraints (); diff --git a/tools/test.sh b/tools/test.sh index 30da2adea..a7c1d143f 100755 --- a/tools/test.sh +++ b/tools/test.sh @@ -5,7 +5,7 @@ ## License.....: MIT ## -OPTS="--quiet --force --potfile-disable --runtime 400 --hwmon-disable" +OPTS="--quiet --force --potfile-disable --runtime 400 --hwmon-disable -O" TDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"