diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | test/test.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index fe247ff4..f14e0338 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ env: before_install: # export LLVM_DIR=${TRAVIS_BUILD_DIR}/${LLVM_PACKAGE} - echo Testing on $NAME - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then wget "$LINK""$NAME".tar.xz ; export LLVM_CONFIG=`pwd`/"$NAME" ; tar xJf "$DIR"/"$NAME".tar.xz ; fi + - if [ "$TRAVIS_OS_NAME" = "osx" ]; then wget "$LINK""$NAME".tar.xz ; export LLVM_CONFIG=`pwd`/"$NAME" ; tar xJf "$NAME".tar.xz ; fi - if [ "$MODERN" = "yes" ]; then sudo apt update ; sudo apt upgrade ; sudo apt install -y libtool libtool-bin automake bison libglib2.0 build-essential clang gcc-7 gcc-7-plugin-dev libc++-7-dev ; fi - if [ "$MODERN" = "no" ]; then sudo apt update ; sudo apt install -y libtool $EXTRA automake bison libglib2.0 build-essential clang gcc gcc-"$GCC"-plugin-dev libc++-dev ; fi diff --git a/test/test.sh b/test/test.sh index eea65cf5..e32ebe21 100755 --- a/test/test.sh +++ b/test/test.sh @@ -427,9 +427,9 @@ test -e ../libradamsa.so && { test -e test-instr.plain && { mkdir -p in echo 0 > in/in - $ECHO "$GREY[*] running afl-fuzz with radamsa, this will take approx 15 seconds" + $ECHO "$GREY[*] running afl-fuzz with radamsa, this will take approx 20 seconds" { - ../afl-fuzz -RR -V15 -m ${MEM_LIMIT} -i in -o out -- ./test-instr.plain >>errors 2>&1 + ../afl-fuzz -RR -V20 -m ${MEM_LIMIT} -i in -o out -- ./test-instr.plain >>errors 2>&1 } >>errors 2>&1 test -n "$( ls out/queue/id:000002* 2> /dev/null )" && { $ECHO "$GREEN[+] libradamsa performs good - and very slow - mutations" |