aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2023-06-06 19:04:53 +0300
committerGitHub <noreply@github.com>2023-06-06 19:04:53 +0300
commit26cbc1e99337da4dc82c7c827dc2dac0a3733dc2 (patch)
treea93e9a44eb70a22dcd593bfa2b869b7783b7c064
parent7c84331dc5259311c1be70a25a03aaeefb746ef6 (diff)
parentf0ccca123ad8f9813ad141ebd243e8c7b96824a1 (diff)
downloadAFLplusplus-26cbc1e99337da4dc82c7c827dc2dac0a3733dc2.tar.gz
Merge pull request #1761 from AFLplusplus/dev
fix ci
-rwxr-xr-xtest/test-frida-mode.sh2
-rwxr-xr-xtest/test-llvm.sh2
-rwxr-xr-xtest/test-qemu-mode.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/test-frida-mode.sh b/test/test-frida-mode.sh
index 3ae84656..8c528da5 100755
--- a/test/test-frida-mode.sh
+++ b/test/test-frida-mode.sh
@@ -39,7 +39,7 @@ test -e ../afl-frida-trace.so && {
test "$SYS" = "i686" -o "$SYS" = "x86_64" -o "$SYS" = "amd64" -o "$SYS" = "i86pc" -o "$SYS" = "aarch64" -o ! "${SYS%%arm*}" && {
$ECHO "$GREY[*] running afl-fuzz for frida_mode cmplog, this will take approx 10 seconds"
{
- ../afl-fuzz -m none -V07 -O -c 0 -i in -o out -- ./test-compcov >>errors 2>&1
+ ../afl-fuzz -m none -V07 -O -c 0 -l 3 -i in -o out -- ./test-compcov >>errors 2>&1
} >>errors 2>&1
test -n "$( ls out/default/queue/id:000003* 2>/dev/null )" && {
$ECHO "$GREEN[+] afl-fuzz is working correctly with frida_mode cmplog"
diff --git a/test/test-llvm.sh b/test/test-llvm.sh
index 19fb7c1a..95e43b1c 100755
--- a/test/test-llvm.sh
+++ b/test/test-llvm.sh
@@ -257,7 +257,7 @@ test -e ../afl-clang-fast -a -e ../split-switches-pass.so && {
}
rm -f test-compcov test.out instrumentlist.txt
AFL_LLVM_CMPLOG=1 ../afl-clang-fast -o test-cmplog test-cmplog.c > /dev/null 2>&1
- ../afl-clang-fast -o test-c test-cmplog.c > /dev/null 2>&1
+ ../afl-clang-fast -O0 -o test-c test-cmplog.c > /dev/null 2>&1
test -e test-cmplog && {
$ECHO "$GREY[*] running afl-fuzz for llvm_mode cmplog, this will take approx 10 seconds"
{
diff --git a/test/test-qemu-mode.sh b/test/test-qemu-mode.sh
index 9e268963..8eb7cb67 100755
--- a/test/test-qemu-mode.sh
+++ b/test/test-qemu-mode.sh
@@ -88,7 +88,7 @@ test -e ../afl-qemu-trace && {
test "$SYS" = "i686" -o "$SYS" = "x86_64" -o "$SYS" = "amd64" -o "$SYS" = "i86pc" -o "$SYS" = "aarch64" -o ! "${SYS%%arm*}" && {
$ECHO "$GREY[*] running afl-fuzz for qemu_mode cmplog, this will take approx 10 seconds"
{
- ../afl-fuzz -m none -V07 -Q -c 0 -i in -o out -- ./test-compcov >>errors 2>&1
+ ../afl-fuzz -m none -V07 -Q -c 0 -l 3 -i in -o out -- ./test-compcov >>errors 2>&1
} >>errors 2>&1
test -n "$( ls out/default/queue/id:000001* 2>/dev/null )" && {
$ECHO "$GREEN[+] afl-fuzz is working correctly with qemu_mode cmplog"