From: Vincent Bernat Date: Thu, 12 Mar 2020 11:56:01 +0000 (+0100) Subject: tests: do not enable asan on anything else than x86_64 X-Git-Tag: 1.0.6~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eec0cfa53cad3dcb8a7f30ff0a879b5efe126d36;p=thirdparty%2Flldpd.git tests: do not enable asan on anything else than x86_64 It seems buggy. --- diff --git a/tests/ci/run.sh b/tests/ci/run.sh index c9d88091..6cde2cfd 100755 --- a/tests/ci/run.sh +++ b/tests/ci/run.sh @@ -6,7 +6,8 @@ LLDPD_CONFIG_ARGS="$LLDPD_CONFIG_ARGS --enable-pie" case "$(uname -s)" in Linux) LLDPD_CONFIG_ARGS="$LLDPD_CONFIG_ARGS --localstatedir=/var --sysconfdir=/etc --prefix=/usr" - LLDPD_CONFIG_ARGS="$LLDPD_CONFIG_ARGS --enable-sanitizers" + [ $(uname -m) != x86_64 ] || \ + LLDPD_CONFIG_ARGS="$LLDPD_CONFIG_ARGS --enable-sanitizers" LLDPD_CONFIG_ARGS="$LLDPD_CONFIG_ARGS LDFLAGS=-fuse-ld=gold" ;; Darwin)