Code

parser_test: Add testcases covering operand type checks.
[sysdb.git] / t / cibuild.sh
index 8b872af6edbc7fb39bdc4570a9fea25bc10f06ea..bb863c6f35d68383c2e765b66953fca5ebb8b608 100755 (executable)
@@ -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 -j10 test TESTS_ENVIRONMENT="./testwrapper.sh"
+               ;;
+esac
+