]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
attempt to re-enable msan tests
authorYann Collet <yann.collet.73@gmail.com>
Mon, 6 Jun 2016 16:00:00 +0000 (18:00 +0200)
committerYann Collet <yann.collet.73@gmail.com>
Mon, 6 Jun 2016 16:00:00 +0000 (18:00 +0200)
.travis.yml
Makefile

index 879aff8a9ee5b8f4ebb2a3541c2505423b29101c..6a2e90309214ec31b78ea3a33b42b27645d03c00 100644 (file)
@@ -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
index 755b0c1a824d668a8928c4eb66eedb7ae9da5f7f..18db0424502b2367e523d540da38e008961af55d 100644 (file)
--- 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"