diff options
author | Jack Lloyd <[email protected]> | 2019-02-05 18:07:05 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-02-05 18:07:05 -0500 |
commit | 0e3b38cd6e9c47282f48f6585e5c44451cfa3437 (patch) | |
tree | b54631546fcb9a93f5f68ddc8c8ca6e8074f41b3 /src | |
parent | 3f5ac055d4eab38bbd7c21aebfe1a20d4ac1dc3a (diff) |
Use threads for Asan tests too
Diffstat (limited to 'src')
-rwxr-xr-x | src/scripts/ci_build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index 77ba19662..02ecb1ed7 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -48,7 +48,7 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro test_prefix = [] test_cmd = [os.path.join(root_dir, 'botan-test')] - if target in ['shared', 'static', 'sanitizer', 'gcc4.8', 'cross-i386', 'bsi', 'nist']: + if target in ['shared', 'static', 'sanitizer', 'fuzzers', 'gcc4.8', 'cross-i386', 'bsi', 'nist']: test_cmd += ['--test-threads=%d' % (get_concurrency())] fast_tests = ['block', 'aead', 'hash', 'stream', 'mac', 'modes', 'kdf', |