Skip to content

Commit 4c232c7

Browse files
committed
Skip fuzzer check on Windows.
1 parent ea0a1af commit 4c232c7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/test.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -169,17 +169,17 @@ function test_default() {
169169
indir "${BENCHMARKS_ROOT}" $CARGO update
170170
indir "${BENCHMARKS_ROOT}" $CARGO check --benches --all-features $@
171171

172-
echo ":: Checking fuzzers..."
173-
indir "${FUZZ_ROOT}" $CARGO update
174-
indir "${FUZZ_ROOT}" $CARGO check --all --all-features $@
175-
176172
case "$OSTYPE" in
177173
darwin* | linux*)
178174
echo ":: Checking testbench..."
179175
indir "${TESTBENCH_ROOT}" $CARGO update
180176
indir "${TESTBENCH_ROOT}" $CARGO check $@
177+
178+
echo ":: Checking fuzzers..."
179+
indir "${FUZZ_ROOT}" $CARGO update
180+
indir "${FUZZ_ROOT}" $CARGO check --all --all-features $@
181181
;;
182-
*) echo ":: Skipping testbench [$OSTYPE]" ;;
182+
*) echo ":: Skipping testbench, fuzzers [$OSTYPE]" ;;
183183
esac
184184
}
185185

0 commit comments

Comments
 (0)