aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2020-10-28 12:56:12 -0400
committerJack Lloyd <[email protected]>2020-10-28 12:56:12 -0400
commit0feb5d8247f0f13f07e7569664a318f83ef94198 (patch)
treed3375aea3d278bc6e44eddb63b3d50838a7b59e5 /src
parent003f44e4b2cb70ba0af2cca93cb7d7e5e41eebae (diff)
Build fix
Diffstat (limited to 'src')
-rwxr-xr-xsrc/scripts/ci_build.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py
index 69c300abb..306561b01 100755
--- a/src/scripts/ci_build.py
+++ b/src/scripts/ci_build.py
@@ -74,7 +74,7 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin,
test_cmd = [os.path.join(root_dir, 'botan-test')]
essential_tests = ['block', 'aead', 'hash', 'stream', 'mac', 'modes', 'kdf',
- 'hmac_drbg', 'hmac_drbg_unit', 'tls'
+ 'hmac_drbg', 'hmac_drbg_unit', 'tls',
'rsa_sign', 'rsa_verify', 'dh_kat',
'ecc_randomized', 'ecdh_kat', 'ecdsa_sign', 'curve25519_scalar',
'cpuid', 'simd_32', 'os_utils', 'util', 'util_dates']
@@ -220,8 +220,6 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin,
flags += ['--cpu=ppc32']
cc_bin = 'powerpc-linux-gnu-g++'
test_prefix = ['qemu-ppc', '-L', '/usr/powerpc-linux-gnu/']
- for slow_test in ['tls', 'ffi']:
- test_cmd.remove(slow_test)
elif target == 'cross-ppc64':
flags += ['--cpu=ppc64', '--with-endian=little']
cc_bin = 'powerpc64le-linux-gnu-g++'