Temporarily disable the fuzz check in test-all.sh

We can re-enable it once https://github.com/Amanieu/hashmap_core/pull/8
is merged.
This commit is contained in:
Dan Gohman
2018-11-26 05:04:05 -08:00
parent e8201d0f93
commit 0e19f39831

View File

@@ -62,10 +62,13 @@ if rustup toolchain list | grep -q nightly; then
cargo +nightly install cargo-fuzz
fi
fuzz_module="8f0d725b20dcea52335cf521a5bb083833a5241f"
ASAN_OPTIONS=detect_leaks=0 \
cargo +nightly fuzz run compile \
"$topdir/fuzz/corpus/compile/$fuzz_module"
echo "Fuzz check temporarily disabled until "
echo "https://github.com/Amanieu/hashmap_core/pull/8"
echo "is merged."
#fuzz_module="8f0d725b20dcea52335cf521a5bb083833a5241f"
#ASAN_OPTIONS=detect_leaks=0 \
#cargo +nightly fuzz run compile \
# "$topdir/fuzz/corpus/compile/$fuzz_module"
else
echo "nightly toolchain not found, skipping fuzz target integration test"
fi