about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-02-22 20:48:36 +0100
committervan Hauser <vh@thc.org>2020-02-22 20:48:36 +0100
commit524d792308a5436e2a57f73b0d4036aacac83323 (patch)
tree8952c3261a304a651dca3c76e2dd1c0aff00f755
parent649a0124d6d20e72d62eedae272385a56fdb18df (diff)
downloadafl++-524d792308a5436e2a57f73b0d4036aacac83323.tar.gz
fix travis weirdness - hopefully
-rw-r--r--.travis.yml2
-rw-r--r--src/afl-as.c7
2 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index ae34fe0b..c4ad9585 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -50,3 +50,5 @@ script:
   - if [ "$TRAVIS_OS_NAME" = "linux" -a "$TRAVIS_CPU_ARCH" = "amd64" ]; then make distrib ASAN_BUILD=1 ; fi
   - if [ "$TRAVIS_CPU_ARCH" = "arm64" ] ; then echo DEBUG ; find / -name llvm-config.h 2>/dev/null; apt-cache search clang | grep clang- ; apt-cache search llvm | grep llvm- ; dpkg -l | egrep 'clang|llvm'; echo DEBUG ; export LLVM_CONFIG=llvm-config-6.0 ; make ASAN_BUILD=1 ; cd qemu_mode && sh ./build_qemu_support.sh ; cd .. ; fi
   - make tests
+  - exit 0
+
diff --git a/src/afl-as.c b/src/afl-as.c
index 72a27cd2..acb026df 100644
--- a/src/afl-as.c
+++ b/src/afl-as.c
@@ -529,10 +529,9 @@ int main(int argc, char** argv) {
         "don't want to run this program directly.\n\n"
 
         "Rarely, when dealing with extremely complex projects, it may be "
-        "advisable to\n"
-        "set AFL_INST_RATIO to a value less than 100 in order to reduce the "
-        "odds of\n"
-        "instrumenting every discovered branch.\n\n"
+        "advisable\n"
+        "to set AFL_INST_RATIO to a value less than 100 in order to reduce the\n"
+        "odds of instrumenting every discovered branch.\n\n"
         "Environment variables used:\n"
         "AFL_AS: path to assembler to use for instrumented files\n"
         "AFL_CC: fall back path to assembler\n"