aboutsummaryrefslogtreecommitdiffstats
path: root/azure-pipelines/test-sanitizers
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2020-10-16 17:17:42 +0200
committerJay Berkenbilt <ejb@ql.org>2020-10-16 17:19:09 +0200
commit1bcd8c1649e65e2be82a8839c857355eb4d3196b (patch)
tree6152ce0182fb89b75ded1abbf082eaf93ff6346d /azure-pipelines/test-sanitizers
parent807aaa46b1b26a459ac1ce44c17dbe872ad0b637 (diff)
downloadqpdf-1bcd8c1649e65e2be82a8839c857355eb4d3196b.tar.zst
Rename azure-pipelines to build-scripts
Diffstat (limited to 'azure-pipelines/test-sanitizers')
-rwxr-xr-xazure-pipelines/test-sanitizers17
1 files changed, 0 insertions, 17 deletions
diff --git a/azure-pipelines/test-sanitizers b/azure-pipelines/test-sanitizers
deleted file mode 100755
index 476f198a..00000000
--- a/azure-pipelines/test-sanitizers
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-set -e
-sudo apt-get update
-sudo apt-get -y install \
- autoconf build-essential zlib1g-dev libjpeg-dev libgnutls28-dev libssl-dev
-./configure \
- CFLAGS="-fsanitize=address -fsanitize=undefined -g" \
- CXXFLAGS="-fsanitize=address -fsanitize=undefined -g" \
- LDFLAGS="-fsanitize=address -fsanitize=undefined" \
- CC=clang CXX="clang++ --std=c++11" \
- --enable-crypto-native --enable-crypto-openssl --enable-crypto-gnutls \
- --enable-werror --disable-shared --enable-show-failed-test-output
-make -j$(nproc) -k
-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