aboutsummaryrefslogtreecommitdiffstats
path: root/azure-pipelines/test-sanitizers
blob: 507b73edc09134c62cb0c26a40792688b16d6545 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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