mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
Update to not bail out early
This commit is contained in:
parent
b7a044eaaf
commit
e4e775af70
1 changed files with 2 additions and 1 deletions
3
.github/workflows/fuzzer.yml
vendored
3
.github/workflows/fuzzer.yml
vendored
|
|
@ -17,5 +17,6 @@ jobs:
|
|||
- name: run fuzz tests - ok to merge if this one fails # for now!
|
||||
run: |
|
||||
cargo +nightly-2024-02-03 install --locked cargo-fuzz
|
||||
cd crates/compiler/test_syntax/fuzz && cargo +nightly-2024-02-03 fuzz run -j4 fuzz_expr --sanitizer=none -- -dict=dict.txt -max_total_time=60
|
||||
cd crates/compiler/test_syntax/fuzz && cargo +nightly-2024-02-03 fuzz run -j4 fuzz_expr --sanitizer=none -- -dict=dict.txt -max_total_time=60 || true
|
||||
cd crates/compiler/test_syntax && for x in fuzz/artifacts/fuzz_expr/crash-*; do cargo run --bin minimize expr $x; done
|
||||
cd crates/compiler/test_syntax && if ls fuzz/artifacts/fuzz_expr/ | grep crash-; then exit 1; fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue