
* a * add real symlink * tmate * corpus * detmate --------- Co-authored-by: Skynet 2 <name@domain.example>
42 lines
858 B
Makefile
42 lines
858 B
Makefile
import "../../../just/libafl.just"
|
|
|
|
FUZZER_NAME := "fuzzbench_fork_qemu"
|
|
|
|
[unix]
|
|
harness:
|
|
cc -c libfuzzer_main.c
|
|
cc \
|
|
./fuzz.c \
|
|
./libfuzzer_main.o \
|
|
-o {{ BUILD_DIR }}/harness \
|
|
-lm -lz
|
|
|
|
[unix]
|
|
build:
|
|
cargo build --profile {{ PROFILE }}
|
|
|
|
[unix]
|
|
run: build harness
|
|
cargo run \
|
|
--profile {{ PROFILE }} \
|
|
{{ BUILD_DIR }}/harness \
|
|
-- \
|
|
--libafl-in ./corpus \
|
|
--libafl-out ./out
|
|
|
|
[unix]
|
|
test: build harness
|
|
#!/bin/bash
|
|
|
|
rm -rf out/
|
|
timeout 15s {{ FUZZER }} {{ BUILD_DIR }}/harness -- --libafl-in ./corpus --libafl-out out ./harness | tee fuzz_stdout.log
|
|
if grep -qa "objectives: 1" fuzz_stdout.log; then
|
|
echo "Fuzzer is working"
|
|
else
|
|
echo "Fuzzer does not generate any testcases or any crashes"
|
|
exit 1
|
|
fi
|
|
|
|
[unix]
|
|
clean:
|
|
cargo clean
|