From b0ce38cabb70798c554a3ca051c38e100e30d5d8 Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Fri, 25 Oct 2019 08:09:48 -0400 Subject: Rename var holding tests used in qemu Some of these tests are quite slow, actually it represents the most critical tests that we want to be sure of and run everywhere we can. --- src/scripts/ci_build.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/scripts/ci_build.py') diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index c1bf2fc6f..5ca132a8f 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -54,12 +54,12 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro # threads just slow down valgrind, qemu, etc test_cmd += ['--test-threads=1'] - fast_tests = ['block', 'aead', 'hash', 'stream', 'mac', 'modes', 'kdf', - 'hmac_drbg', 'hmac_drbg_unit', - 'tls', 'ffi', - 'rsa_sign', 'rsa_verify', 'dh_kat', - 'ecc_randomized', 'ecdh_kat', 'ecdsa_sign', 'curve25519_scalar', - 'cpuid', 'simd_32', 'os_utils', 'util', 'util_dates'] + essential_tests = ['block', 'aead', 'hash', 'stream', 'mac', 'modes', 'kdf', + 'hmac_drbg', 'hmac_drbg_unit', + 'tls', 'ffi', + 'rsa_sign', 'rsa_verify', 'dh_kat', + 'ecc_randomized', 'ecdh_kat', 'ecdsa_sign', 'curve25519_scalar', + 'cpuid', 'simd_32', 'os_utils', 'util', 'util_dates'] install_prefix = os.path.join(tempfile.gettempdir(), 'botan-install') flags = ['--prefix=%s' % (install_prefix), @@ -104,7 +104,7 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro # valgrind in 16.04 has a bug with rdrand handling flags += ['--with-valgrind', '--disable-rdrand'] test_prefix = ['valgrind', '--error-exitcode=9', '-v', '--leak-check=full', '--show-reachable=yes'] - test_cmd += fast_tests + test_cmd += essential_tests if target == 'fuzzers': flags += ['--unsafe-fuzzer-mode'] @@ -186,7 +186,7 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro test_prefix = ['wine'] else: # Build everything but restrict what is run - test_cmd += fast_tests + test_cmd += essential_tests if target == 'cross-arm32': flags += ['--cpu=armv7'] -- cgit v1.2.3