2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-08 13:20:53 +00:00
qpdf/azure-pipelines/test-sanitizers

13 lines
403 B
Plaintext
Raw Normal View History

2019-06-15 19:34:29 +00:00
#!/bin/bash
set -e
sudo apt-get update
sudo apt-get -y install \
autoconf build-essential zlib1g-dev libjpeg-dev
./configure \
CFLAGS="-fsanitize=address -fsanitize=undefined -g" \
CXXFLAGS="-fsanitize=address -fsanitize=undefined -g" \
LDFLAGS="-fsanitize=address -fsanitize=undefined" \
--enable-werror --disable-shared --enable-show-failed-test-output
make -j$(nproc) -k
make -k check