travis: Re-enable sanitizers

This commit is contained in:
Orestis Floros 2020-05-01 13:55:56 +02:00
parent 980164ccca
commit 45a0b91141
No known key found for this signature in database
GPG Key ID: A09DBD7D3222C1C3

View File

@ -35,7 +35,6 @@ addons:
- libcap2-bin
- pulseaudio
script:
# TODO: re-enable sanitizers once issues are fixed
- autoreconf -fi && mkdir -p build && cd build && (../configure --disable-sanitizers || (cat config.log; false)) && make -j 8 V=1 && ldd ./i3status |& grep -q pulse || (echo "not linked against pulseaudio"; exit 1)
- make clean && (../configure --disable-sanitizers --disable-pulseaudio || (cat config.log; false)) && make -j 8 V=1 && ldd ./i3status |& grep -q pulse && (echo "linked against pulseaudio"; exit 1) || true
- autoreconf -fi && mkdir -p build && cd build && (../configure || (cat config.log; false)) && make -j 8 V=1 && ldd ./i3status |& grep -q pulse || (echo "not linked against pulseaudio"; exit 1)
- make clean && (../configure --enable-sanitizers --disable-pulseaudio || (cat config.log; false)) && make -j 8 V=1 && ldd ./i3status |& grep -q pulse && (echo "linked against pulseaudio"; exit 1) || true
- make -j 8 check V=1 || (cat test-suite.log; false)