Skip to content

Commit 569ff85

Browse files
committed
Add a memory sanitizer.
1 parent d217cf5 commit 569ff85

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/fuzz.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ jobs:
1818
- uses: dtolnay/rust-toolchain@master
1919
with:
2020
toolchain: nightly
21+
components: rust-src
2122
- run: cargo install cargo-fuzz
2223
- run: cargo check
23-
- run: |
24-
cd fuzz
25-
cargo +nightly fuzz run --release ${{matrix.target}} -- -max_total_time=300
24+
- run: cd fuzz
25+
- run: cargo fuzz run --release ${{matrix.target}} -- -max_total_time=150
26+
- run: cargo fuzz run --release ${{matrix.target}} --sanitizer memory -- -max_total_time=150

0 commit comments

Comments
 (0)