Code

cibuild.sh: Don't run regular tests when using the address sanitizer.
[sysdb.git] / t / cibuild.sh
index b90fb41855028091d3a2917245f21982894df220..61f4a8b09b658e3b13c75dd17cc7249517a275d7 100755 (executable)
@@ -11,4 +11,13 @@ set -ex
        CFLAGS="-O0 $CICFLAGS" \
        LDFLAGS="$CILDFLAGS"
 make clean all
-make test
+
+case "$CICFLAGS" in
+       *sanitize=address*)
+               # skip regular tests
+               ;;
+       *)
+               make test
+               ;;
+esac
+