mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
fuzz_testing: create out directory if needed, and fix filename passing
This commit is contained in:
parent
c27d909239
commit
4cd4a4313d
1 changed files with 2 additions and 1 deletions
|
@ -18,4 +18,5 @@ case "$type" in
|
||||||
*) echo "usage: $0 block|transaction|signature|cold-outputs|cold-transaction|load-from-binary|load-from-json"; exit 1 ;;
|
*) echo "usage: $0 block|transaction|signature|cold-outputs|cold-transaction|load-from-binary|load-from-json"; exit 1 ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
afl-fuzz -i tests/data/fuzz/$type -m 150 -t 250 -o fuzz-out/$type build/fuzz/tests/fuzz/${type}_fuzz_tests
|
mkdir -p fuzz-out
|
||||||
|
afl-fuzz -i tests/data/fuzz/$type -m none -t 250 -o fuzz-out/$type build/fuzz/tests/fuzz/${type}_fuzz_tests @@
|
||||||
|
|
Loading…
Reference in a new issue