Skip fuzzer check on Windows.

This commit is contained in:
Sergio Benitez 2024-12-02 11:49:14 +01:00
parent ea0a1af683
commit 4c232c7f74
1 changed files with 5 additions and 5 deletions

View File

@ -169,17 +169,17 @@ function test_default() {
indir "${BENCHMARKS_ROOT}" $CARGO update indir "${BENCHMARKS_ROOT}" $CARGO update
indir "${BENCHMARKS_ROOT}" $CARGO check --benches --all-features $@ 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 case "$OSTYPE" in
darwin* | linux*) darwin* | linux*)
echo ":: Checking testbench..." echo ":: Checking testbench..."
indir "${TESTBENCH_ROOT}" $CARGO update indir "${TESTBENCH_ROOT}" $CARGO update
indir "${TESTBENCH_ROOT}" $CARGO check $@ 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 esac
} }