From c28f9e271358d3c258236acb2748d90006031652 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Mon, 6 Jun 2016 18:00:00 +0200 Subject: [PATCH] attempt to re-enable msan tests --- .travis.yml | 3 +++ Makefile | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 879aff8a..6a2e9030 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 755b0c1a..18db0424 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"