diff options
author | Jack Lloyd <[email protected]> | 2016-12-30 14:39:32 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-12-30 14:39:32 -0500 |
commit | ec8f67d9a9c41223749a2fc6e27b889b62a290f5 (patch) | |
tree | 9f3fb9afa55194e44699d7b9c021be6c573142ef /src/scripts/lcov.sh | |
parent | 4f8cb1ed243ecb1775fb12744f269101dd5df68b (diff) |
Disable OpenSSL in lcov script
Kind of confuses the output. And also seems to crash for me
(somewhere deep inside OpenSSL). Unclear what the problem is there.
Diffstat (limited to 'src/scripts/lcov.sh')
-rwxr-xr-x | src/scripts/lcov.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/lcov.sh b/src/scripts/lcov.sh index 1068b21aa..391bf89d2 100755 --- a/src/scripts/lcov.sh +++ b/src/scripts/lcov.sh @@ -1,6 +1,6 @@ #!/bin/sh -./configure.py --with-debug-info --with-coverage-info --with-bzip2 --with-lzma --with-sqlite --with-zlib --with-pkcs11 --with-openssl --with-sqlite3 +./configure.py --with-debug-info --with-coverage-info --with-bzip2 --with-lzma --with-sqlite --with-zlib --with-pkcs11 --with-sqlite3 make -l4 -j$(nproc) -k ./botan-test --pkcs11-lib=/usr/lib/libsofthsm2.so --run-online-tests |