2019-06-15 19:34:29 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install \
|
2020-10-15 19:32:59 +00:00
|
|
|
autoconf build-essential zlib1g-dev libjpeg-dev libgnutls28-dev libssl-dev
|
2019-06-15 19:34:29 +00:00
|
|
|
./configure \
|
|
|
|
CFLAGS="-fsanitize=address -fsanitize=undefined -g" \
|
|
|
|
CXXFLAGS="-fsanitize=address -fsanitize=undefined -g" \
|
|
|
|
LDFLAGS="-fsanitize=address -fsanitize=undefined" \
|
2021-02-10 19:26:54 +00:00
|
|
|
CC=clang CXX="clang++ --std=c++14" \
|
2020-04-06 07:19:52 +00:00
|
|
|
--enable-crypto-native --enable-crypto-openssl --enable-crypto-gnutls \
|
2019-06-15 19:34:29 +00:00
|
|
|
--enable-werror --disable-shared --enable-show-failed-test-output
|
|
|
|
make -j$(nproc) -k
|
2019-11-06 02:31:56 +00:00
|
|
|
for i in $(./qpdf/build/qpdf --show-crypto); do
|
|
|
|
echo "*** Running tests with crypto provider $i"
|
|
|
|
env QPDF_CRYPTO_PROVIDER=$i make -k check
|
|
|
|
done
|