Skip to content

Commit

Permalink
Skip fuzzer check on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioBenitez committed Dec 2, 2024
1 parent ea0a1af commit 4c232c7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 4c232c7

Please sign in to comment.