-
Notifications
You must be signed in to change notification settings - Fork 10
39 lines (38 loc) · 1.11 KB
/
fuzz.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Fuzz test
on:
push:
jobs:
run-fuzz:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v4
- name: Set up Rust
run: |
set -e
rustup set profile minimal
rustup toolchain install nightly
rustup default nightly
- uses: taiki-e/install-action@v2
with:
tool: cargo-bolero
- run: |
set -e
DIRS="alloc profiling"
for dir in $DIRS;
do
# cargo bolero list outputs {"package":"package-name","test":"test-name"}
pushd $dir
cargo bolero list | \
# And the following command will parse package-name's and test-name's one in each line
grep -oP '"(package|test)"\s*:\s*"\K[^"]+' | \
# awk will stitch package and test names back separated by a tab
awk 'NR%2{printf "%s\t", $0; next}1' | \
while read -r package test;
do
echo "****** Starting bolero test for $package $test ******" 1>&2
cargo bolero test -T 1min --package $package $test
done
popd
done