Code

store.h: Updated some documentation comments.
[sysdb.git] / t / cibuild.sh
index b90fb41855028091d3a2917245f21982894df220..48c56c7b4e7ee9190166713240170fa8c4f7cd21 100755 (executable)
@@ -11,4 +11,16 @@ set -ex
        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
+