6 lines
315 B
Bash
Executable File
6 lines
315 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
|
|
export LD_LIBRARY_PATH=target/debug
|
|
$1 --libafl-snapshot tmp/dummy.qcow2 --libafl-out tmp/test_out --libafl-in tmp/test_in --libafl-kernel ${@:2}
|