Code

integration/test_lib.sh: Store the CA serial in $TESTDIR.
[sysdb.git] / t / cibuild.sh
index fdf4badceddae3091bb014e591e8f309250b0e58..bb863c6f35d68383c2e765b66953fca5ebb8b608 100755 (executable)
@@ -7,6 +7,17 @@
 set -ex
 
 ./autogen.sh
-./configure --enable-gcov CFLAGS="-O0 -Wno-sign-conversion"
+./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
+