diff options
author | hexcoder- <heiko@hexco.de> | 2020-05-28 22:24:06 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-05-28 22:24:06 +0200 |
commit | bb0a31158ae84a7f9ae287c7ce5837c66ae83990 (patch) | |
tree | 69d3d14012851dac4b3f3142745f842bca7f76c6 | |
parent | bfd2b6298ea9309a14af5017e74e6f66c7ba49bc (diff) | |
download | afl++-bb0a31158ae84a7f9ae287c7ce5837c66ae83990.tar.gz |
test.sh OpenBSD6.7, 32bit: add 'i386' to known intel strings
-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 2559f058..c52be154 100755 --- a/test/test.sh +++ b/test/test.sh @@ -100,7 +100,7 @@ $ECHO "${RESET}${GREY}[*] starting afl++ test framework ..." test -z "$SYS" && $ECHO "$YELLOW[-] uname -m did not succeed" $ECHO "$BLUE[*] Testing: ${AFL_GCC}, afl-showmap, afl-fuzz, afl-cmin and afl-tmin" -test "$SYS" = "i686" -o "$SYS" = "x86_64" -o "$SYS" = "amd64" -o "$SYS" = "i86pc" && { +test "$SYS" = "i686" -o "$SYS" = "x86_64" -o "$SYS" = "amd64" -o "$SYS" = "i86pc" -o "$SYS" = "i386" && { test -e ../${AFL_GCC} -a -e ../afl-showmap -a -e ../afl-fuzz && { ../${AFL_GCC} -o test-instr.plain ../test-instr.c > /dev/null 2>&1 AFL_HARDEN=1 ../${AFL_GCC} -o test-compcov.harden test-compcov.c > /dev/null 2>&1 |