From 0e19f3983133e9a5444d3bc2fca88c1e7e98281f Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 26 Nov 2018 05:04:05 -0800 Subject: [PATCH] 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. --- test-all.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/test-all.sh b/test-all.sh index ba1fab77e9..11b85b0288 100755 --- a/test-all.sh +++ b/test-all.sh @@ -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