about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhexcoder <hexcoder-@users.noreply.github.com>2020-01-07 23:19:55 +0100
committerGitHub <noreply@github.com>2020-01-07 23:19:55 +0100
commit57204c79178f1be319c0673970a4ea4f8da2d9ee (patch)
tree515ad20586506a129c5c80402b51a29fadca638d
parent578b1f4b9499c6429c0835d36c09e6f4573ae7e2 (diff)
downloadafl++-57204c79178f1be319c0673970a4ea4f8da2d9ee.tar.gz
increase memory for afl-tmin test
needed by NetBSD
-rwxr-xr-xtest/test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.sh b/test/test.sh
index 86a76529..51b53de4 100755
--- a/test/test.sh
+++ b/test/test.sh
@@ -157,7 +157,7 @@ test "$SYS" = "i686" -o "$SYS" = "x86_64" -o "$SYS" = "amd64" && {
        $ECHO "$RED[!] afl-cmin did not correctly minimize testcase numbers"
        CODE=1
     }
-    ../afl-tmin -i in/in2 -o in2/in2 -- ./test-instr.plain > /dev/null 2>&1
+    ../afl-tmin -m200 -i in/in2 -o in2/in2 -- ./test-instr.plain > /dev/null 2>&1
     SIZE=`ls -l in2/in2 2> /dev/null | awk '{print$5}'`
     test "$SIZE" = 1 && $ECHO "$GREEN[+] afl-tmin correctly minimized the testcase"
     test "$SIZE" = 1 || {