Commit 84a5fcbd authored by Kenton Varda's avatar Kenton Varda

Skip fuzz tests under valgrind in super-test.sh

parent ad53f807
......@@ -398,7 +398,10 @@ if [ "x`uname`" != xDarwin ] && which valgrind > /dev/null; then
doit ./configure --disable-shared CXXFLAGS="-g"
doit make -j6
doit make -j6 capnp-test
doit valgrind --leak-check=full --track-fds=yes --error-exitcode=1 ./capnp-test
# Running the fuzz tests under Valgrind is a great thing to do -- but it takes
# some 40 minutes. So, it needs to be done as a separate step of the release
# process, perhaps along with the AFL tests.
doit CAPNP_SKIP_FUZZ_TEST=1 valgrind --leak-check=full --track-fds=yes --error-exitcode=1 ./capnp-test
fi
doit make maintainer-clean
......
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