Code

store_json: Base the memstore emitter on the store-writer API.
[sysdb.git] / t / cibuild.sh
index e0754dbc2e2e982881ce4e27fc7423198406a8f4..48c56c7b4e7ee9190166713240170fa8c4f7cd21 100755 (executable)
@@ -7,6 +7,20 @@
 set -ex
 
 ./autogen.sh
-./configure --enable-gcov $CIOPTIONS 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
+               ;;
+       *)
+               # old versions of gcc and clang complain about { 0 } initializers
+               make -j10 test \
+                       TESTS_ENVIRONMENT="./testwrapper.sh" \
+                       CFLAGS="-O0 $CICFLAGS -Wno-missing-field-initializers"
+               ;;
+esac
+