X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Fcibuild.sh;h=9e21eb2b1fe15a75eb6fbe08f4f613b0cd110830;hb=3560e6489d75c998f3e7c3fc2c14ce4c22e78ea0;hp=8b872af6edbc7fb39bdc4570a9fea25bc10f06ea;hpb=919214f215964cb9087ce293171ab88c4715f634;p=sysdb.git diff --git a/t/cibuild.sh b/t/cibuild.sh index 8b872af..9e21eb2 100755 --- a/t/cibuild.sh +++ b/t/cibuild.sh @@ -7,8 +7,17 @@ set -ex ./autogen.sh -./configure --enable-gcov $CIOPTIONS \ +./configure --enable-standards --enable-gcov $CIOPTIONS \ CFLAGS="-O0 $CICFLAGS" \ LDFLAGS="$CILDFLAGS" make clean all -make test + +case "$CICFLAGS" in + *sanitize=address*) + # skip regular tests + ;; + *) + make test TESTS_ENVIRONMENT="./testwrapper.sh" + ;; +esac +