aboutsummaryrefslogtreecommitdiffstats
path: root/azure-pipelines/test-sanitizers
diff options
context:
space:
mode:
Diffstat (limited to 'azure-pipelines/test-sanitizers')
-rwxr-xr-xazure-pipelines/test-sanitizers8
1 files changed, 6 insertions, 2 deletions
diff --git a/azure-pipelines/test-sanitizers b/azure-pipelines/test-sanitizers
index 507b73ed..f20fc4b3 100755
--- a/azure-pipelines/test-sanitizers
+++ b/azure-pipelines/test-sanitizers
@@ -2,11 +2,15 @@
set -e
sudo apt-get update
sudo apt-get -y install \
- autoconf build-essential zlib1g-dev libjpeg-dev
+ autoconf build-essential zlib1g-dev libjpeg-dev libgnutls28-dev
./configure \
CFLAGS="-fsanitize=address -fsanitize=undefined -g" \
CXXFLAGS="-fsanitize=address -fsanitize=undefined -g" \
LDFLAGS="-fsanitize=address -fsanitize=undefined" \
+ --enable-crypto-native --enable-crypto-gnutls \
--enable-werror --disable-shared --enable-show-failed-test-output
make -j$(nproc) -k
-make -k check
+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