diff options
author | Dominik Maier <domenukk@gmail.com> | 2021-05-09 22:41:11 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2021-05-09 22:41:11 +0200 |
commit | 7e0000021c8e456301bb861438752e0fe884660e (patch) | |
tree | be6132b331b04ced83283770e3574fdb729eae92 /test | |
parent | de69ba01bae87ad5e1cbfa63641d64fe73e755dd (diff) | |
parent | 6c20d54b23f9a49ca65a4b2f786b6be1a2f51105 (diff) | |
download | afl++-7e0000021c8e456301bb861438752e0fe884660e.tar.gz |
Merge branch 'dev' of github.com:AFLplusplus/AFLplusplus into dev
Diffstat (limited to 'test')
-rwxr-xr-x | test/test-custom-mutators.sh | 2 | ||||
-rwxr-xr-x | test/test-performance.sh | 1 | ||||
-rwxr-xr-x | test/test-pre.sh | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/test/test-custom-mutators.sh b/test/test-custom-mutators.sh index a5d666ff..5d679a82 100755 --- a/test/test-custom-mutators.sh +++ b/test/test-custom-mutators.sh @@ -5,7 +5,7 @@ $ECHO "$BLUE[*] Testing: custom mutator" test "1" = "`../afl-fuzz | grep -i 'without python' >/dev/null; echo $?`" && { # normalize path - CUSTOM_MUTATOR_PATH=$(cd $(pwd)/../utils/custom_mutators;pwd) + CUSTOM_MUTATOR_PATH=$(cd $(pwd)/../custom_mutators/examples;pwd) test -e test-custom-mutator.c -a -e ${CUSTOM_MUTATOR_PATH}/example.c -a -e ${CUSTOM_MUTATOR_PATH}/example.py && { unset AFL_CC # Compile the vulnerable program for single mutator diff --git a/test/test-performance.sh b/test/test-performance.sh index cd9f6caf..d61e2f2a 100755 --- a/test/test-performance.sh +++ b/test/test-performance.sh @@ -18,6 +18,7 @@ export AFL_QUIET=1 export AFL_PATH=`pwd`/.. unset AFL_EXIT_WHEN_DONE +unset AFL_EXIT_ON_TIME unset AFL_SKIP_CPUFREQ unset AFL_DEBUG unset AFL_HARDEN diff --git a/test/test-pre.sh b/test/test-pre.sh index 174f2f7f..7819da47 100755 --- a/test/test-pre.sh +++ b/test/test-pre.sh @@ -62,6 +62,7 @@ $ECHO \\101 2>&1 | grep -qE '^A' || { test -z "$ECHO" && { printf Error: printf command does not support octal character codes ; exit 1 ; } export AFL_EXIT_WHEN_DONE=1 +export AFL_EXIT_ON_TIME=60 export AFL_SKIP_CPUFREQ=1 export AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1 unset AFL_NO_X86 |