Explorar el Código

CI: Disable valgrind on OSX since it produces many false positives

Stefan Profanter hace 6 años
padre
commit
e806a0b255
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tools/travis/travis_osx_script.sh

+ 1 - 1
tools/travis/travis_osx_script.sh

@@ -66,7 +66,7 @@ cmake \
     -DUA_ENABLE_DISCOVERY=ON \
     -DUA_ENABLE_DISCOVERY_MULTICAST=ON \
     -DUA_ENABLE_ENCRYPTION=ON \
-    -DUA_ENABLE_UNIT_TESTS_MEMCHECK=ON ..
+    -DUA_ENABLE_UNIT_TESTS_MEMCHECK=OFF ..
 make -j && make test ARGS="-V"
 if [ $? -ne 0 ] ; then exit 1 ; fi
 cd .. && rm -rf build