diff options
author | van Hauser <vh@thc.org> | 2023-04-14 17:43:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 17:43:18 +0200 |
commit | 2b81d2d63f5fbbf130a38e8838b46e995a11237b (patch) | |
tree | a82ab18e8040f1e7b753f7874ec6aee460969016 | |
parent | 97644836935020b9f42688bb6530f08f536644a9 (diff) | |
parent | 50678ed36962eb9f4d26f50f860b07116290fe42 (diff) | |
download | afl++-2b81d2d63f5fbbf130a38e8838b46e995a11237b.tar.gz |
Merge pull request #1703 from YSaxon/patch-1
Fixing typo: & (background) to && (and)
-rwxr-xr-x | test/test-llvm.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-llvm.sh b/test/test-llvm.sh index 68649c23..0e66cc97 100755 --- a/test/test-llvm.sh +++ b/test/test-llvm.sh @@ -265,7 +265,7 @@ test -e ../afl-clang-fast -a -e ../split-switches-pass.so && { echo 00000000000000000000000000000000 > in/in AFL_BENCH_UNTIL_CRASH=1 ../afl-fuzz -m none -V15 -i in -o out -c./test-cmplog -- ./test-c >>errors 2>&1 } >>errors 2>&1 - test -n "$( ls out/default/crashes/id:000000* out/default/hangs/id:000000* 2>/dev/null )" & { + test -n "$( ls out/default/crashes/id:000000* out/default/hangs/id:000000* 2>/dev/null )" && { $ECHO "$GREEN[+] afl-fuzz is working correctly with llvm_mode cmplog" } || { echo CUT------------------------------------------------------------------CUT |