workspace: exclude jotdown-afl

does not build without nightly
This commit is contained in:
Noah Hellman 2023-02-11 22:04:39 +01:00
parent 0ddf2ba61f
commit a6ad7a9d58
3 changed files with 4 additions and 235 deletions

View file

@ -61,9 +61,9 @@ afl:
rm -rf tests/afl/out
(cd tests/afl && \
cargo afl build --release --config profile.release.debug-assertions=true && \
(AFL_NO_UI=1 cargo afl fuzz -i in -o out -Mm ../../target/release/${AFL_TARGET} &) && \
(AFL_NO_UI=1 cargo afl fuzz -i in -o out -Mm target/release/${AFL_TARGET} &) && \
for i in $$(seq $$((${AFL_JOBS} - 1))); do \
AFL_NO_UI=1 cargo afl fuzz -i in -o out -Ss$$i ../../target/release/${AFL_TARGET} & \
AFL_NO_UI=1 cargo afl fuzz -i in -o out -Ss$$i target/release/${AFL_TARGET} & \
done; \
trap - EXIT;\
cat) # keep process alive for trap