From: Yann Collet Date: Mon, 6 Jun 2016 16:00:00 +0000 (+0200) Subject: attempt to re-enable msan tests X-Git-Tag: v0.7.0^2~47 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c28f9e271358d3c258236acb2748d90006031652;p=thirdparty%2Fzstd.git attempt to re-enable msan tests --- diff --git a/.travis.yml b/.travis.yml index 879aff8a9..6a2e90309 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,6 +22,9 @@ matrix: - os: linux sudo: false env: PLATFORM="Ubuntu 12.04 container" MAKE_PARAM=asan + - os: linux + sudo: false + env: PLATFORM="Ubuntu 12.04 container" MAKE_PARAM=msan - os: linux sudo: false env: PLATFORM="Ubuntu 12.04 container" MAKE_PARAM=zlibwrapper diff --git a/Makefile b/Makefile index 755b0c1a8..18db04245 100644 --- a/Makefile +++ b/Makefile @@ -114,7 +114,7 @@ ppctest-w-install: clean ppcinstall ppctest ppc64test: clean $(MAKE) -C $(PRGDIR) datagen # use native, faster - $(MAKE) -C $(PRGDIR) test CC=powerpc64le-linux-gnu-gcc ZSTDRTTEST= MOREFLAGS="-Werror -static" + $(MAKE) -C $(PRGDIR) test CC=powerpc64le-linux-gnu-gcc ZSTDRTTEST= MOREFLAGS="-Werror -static" ppc64install: clean sudo apt-get update -y -q @@ -130,7 +130,7 @@ asan: clean $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=address" msan: clean - $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=memory" # datagen.c fails this test, for no obvious reason + $(MAKE) test CC=clang MOREFLAGS="-g -fsanitize=memory" # datagen.c used to fail this test for no obvious reason asan32: clean $(MAKE) -C $(PRGDIR) test32 CC=clang MOREFLAGS="-g -fsanitize=address"