mirror of https://github.com/rwf2/Rocket.git
Skip fuzzer check on Windows.
This commit is contained in:
parent
ea0a1af683
commit
4c232c7f74
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue