From 4c232c7f746f9d507ffe998faae114e6b7b00854 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Mon, 2 Dec 2024 11:49:14 +0100 Subject: [PATCH] Skip fuzzer check on Windows. --- scripts/test.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/test.sh b/scripts/test.sh index 612c4659..13df52cd 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -169,17 +169,17 @@ function test_default() { indir "${BENCHMARKS_ROOT}" $CARGO update indir "${BENCHMARKS_ROOT}" $CARGO check --benches --all-features $@ - echo ":: Checking fuzzers..." - indir "${FUZZ_ROOT}" $CARGO update - indir "${FUZZ_ROOT}" $CARGO check --all --all-features $@ - case "$OSTYPE" in darwin* | linux*) echo ":: Checking testbench..." indir "${TESTBENCH_ROOT}" $CARGO update indir "${TESTBENCH_ROOT}" $CARGO check $@ + + echo ":: Checking fuzzers..." + indir "${FUZZ_ROOT}" $CARGO update + indir "${FUZZ_ROOT}" $CARGO check --all --all-features $@ ;; - *) echo ":: Skipping testbench [$OSTYPE]" ;; + *) echo ":: Skipping testbench, fuzzers [$OSTYPE]" ;; esac }