5 lines
353 B
Bash
Executable File
5 lines
353 B
Bash
Executable File
mkdir -p tmp/test_in tmp/test_out
|
|
[ ! -f tmp/test_in/test ] && echo " !test" > tmp/test_in/test
|
|
[ ! -f tmp/dummy.qcow2 ] && qemu-img create -f qcow2 tmp/dummy.qcow2 32M
|
|
LD_LIBRARY_PATH=target/debug target/debug/fuzzer --libafl-logfile tmp/libafl.log --libafl-snapshot tmp/dummy.qcow2 --libafl-out tmp/test_out --libafl-in tmp/test_in --libafl-kernel $@
|