blob: 65c6ffa78492d908eebe41addac5f54b77ce62c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/bash
set -ex
pushd lib/xixanta
cargo +nightly fuzz run fuzz_target_parser -- -max_total_time=180
cargo +nightly fuzz run fuzz_target_assembler -- -max_total_time=180
popd
pushd lib/header
cargo +nightly fuzz run fuzz_target_header -- -max_total_time=180
popd
|