diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-03-15 21:42:04 +0100 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-03-15 21:42:04 +0100 |
commit | bfe076748b21af1465e18737ab71f8e2c799128a (patch) | |
tree | 60f3de970ef72fb6e25040716069d77e031c84ea | |
parent | 070412b9c1c874924298d318d48aefdbcdedb340 (diff) | |
download | afl++-bfe076748b21af1465e18737ab71f8e2c799128a.tar.gz |
fix test failure with qemu compcov
-rwxr-xr-x | test/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.sh b/test/test.sh index 4724e828..6dcf3e67 100755 --- a/test/test.sh +++ b/test/test.sh @@ -706,7 +706,7 @@ test -e ../afl-qemu-trace && { unset AFL_PRELOAD unset AFL_COMPCOV_LEVEL } >>errors 2>&1 - test -n "$( ls out/queue/id:000002* 2> /dev/null )" && { + test -n "$( ls out/queue/id:000001* 2> /dev/null )" && { $ECHO "$GREEN[+] afl-fuzz is working correctly with qemu_mode compcov" } || { echo CUT------------------------------------------------------------------CUT |