Commit 782b9c4d authored by Kenton Varda's avatar Kenton Varda

Skip valgrind on OSX because it's experimental and doesn't fully work yet.

parent 6beb5910
......@@ -345,7 +345,10 @@ doit make distclean
doit ./configure --disable-shared CXXFLAGS="$CXXFLAGS -fno-rtti -fno-exceptions"
doit make -j6 check
if which valgrind > /dev/null; then
# Valgrind is currently "experimental and mostly broken" on OSX and fails to run the full test
# suite, but I have it installed because it did manage to help me track down a bug or two. Anyway,
# skip it on OSX for now.
if [ "x`uname`" != xDarwin ] && which valgrind > /dev/null; then
doit make distclean
echo "========================================================================="
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment