diff options
author | hexcoder <hexcoder-@users.noreply.github.com> | 2020-02-07 13:04:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 13:04:49 +0100 |
commit | 7734a9229e5470a2c1c2f67702d4c299cd7a6264 (patch) | |
tree | 0c207823fc8a7e8373aa821df075a9e6284fe1cf | |
parent | ca35e57eac1fbc49b9fc9ae033bddb4b52fc8485 (diff) | |
download | afl++-7734a9229e5470a2c1c2f67702d4c299cd7a6264.tar.gz |
track afl-cmin test changes
-rwxr-xr-x | test/test.sh | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/test/test.sh b/test/test.sh index 57b50eb4..1709468e 100755 --- a/test/test.sh +++ b/test/test.sh @@ -265,12 +265,22 @@ test -e ../afl-clang-fast -a -e ../split-switches-pass.so && { } test "$SYS" = "i686" -o "$SYS" = "x86_64" -o "$SYS" = "amd64" || { echo 000000000000000000000000 > in/in2 + echo 111 > in/in3 mkdir -p in2 - ../afl-cmin -i in -o in2 -- ./test-instr.plain >/dev/null - CNT=`ls in2/ | wc -l` + ../afl-cmin -i in -o in2 -- ./test-instr.plain >/dev/null 2>&1 # why is afl-forkserver writing to stderr? + CNT=`ls in2/* 2>/dev/null | wc -l` case "$CNT" in - *1) $ECHO "$GREEN[+] afl-cmin correctly minimized the number of testcases" ;; - *) $ECHO "$RED[!] afl-cmin did not correctly minimize the number of testcases" + *2) $ECHO "$GREEN[+] afl-cmin correctly minimized the number of testcases" ;; + *) $ECHO "$RED[!] afl-cmin did not correctly minimize the number of testcases ($CNT)" + CODE=1 + ;; + esac + rm -f in2/in* + AFL_PATH=`pwd`/.. ../afl-cmin.bash -i in -o in2 -- ./test-instr.plain >/dev/null + CNT=`ls in2/* 2>/dev/null | wc -l` + case "$CNT" in + *2) $ECHO "$GREEN[+] afl-cmin.bash correctly minimized the number of testcases" ;; + *) $ECHO "$RED[!] afl-cmin.bash did not correctly minimize the number of testcases ($CNT)" CODE=1 ;; esac |