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