Code

plugin: Make sdb_plugin_info_t public.
[sysdb.git] / t / cibuild.sh
index e0754dbc2e2e982881ce4e27fc7423198406a8f4..9e21eb2b1fe15a75eb6fbe08f4f613b0cd110830 100755 (executable)
@@ -7,6 +7,17 @@
 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
+               ;;
+       *)
+               make test TESTS_ENVIRONMENT="./testwrapper.sh"
+               ;;
+esac
+