Skip to content

Commit 669b68c

Browse files
committed
Add a memory sanitizer.
1 parent d217cf5 commit 669b68c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/fuzz.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
toolchain: nightly
2121
- run: cargo install cargo-fuzz
2222
- run: cargo check
23-
- run: |
24-
cd fuzz
25-
cargo +nightly fuzz run --release ${{matrix.target}} -- -max_total_time=300
23+
- run: cd fuzz
24+
- run: cargo fuzz run --release ${{matrix.target}} -- -max_total_time=150
25+
- run: cargo fuzz run --release ${{matrix.target}} --sanitizer memory -- -max_total_time=150

0 commit comments

Comments
 (0)