[zorg] r228070 - [fuzzer bot] disable assertions on the fuzzer bot

Kostya Serebryany kcc at google.com
Tue Feb 3 15:45:03 PST 2015


Author: kcc
Date: Tue Feb  3 17:45:03 2015
New Revision: 228070

URL: http://llvm.org/viewvc/llvm-project?rev=228070&view=rev
Log:
[fuzzer bot] disable assertions on the fuzzer bot

Modified:
    zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_fuzzer.sh

Modified: zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_fuzzer.sh
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_fuzzer.sh?rev=228070&r1=228069&r2=228070&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_fuzzer.sh (original)
+++ zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_fuzzer.sh Tue Feb  3 17:45:03 2015
@@ -15,7 +15,9 @@ STAGE1_DIR=llvm_build0
 STAGE2_ASAN_DIR=llvm_build_asan
 MAKE_JOBS=${MAX_MAKE_JOBS:-16}
 LLVM=$ROOT/llvm
-CMAKE_COMMON_OPTIONS="-GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=ON -DLLVM_PARALLEL_LINK_JOBS=3"
+# No assertions. Need to clean up the existing assertion failures first.
+# Also, the Fuzzer does not provide reproducers on assertion failures yet.
+CMAKE_COMMON_OPTIONS="-GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=OFF -DLLVM_PARALLEL_LINK_JOBS=3"
 CLANG_FORMAT_CORPUS=$ROOT/clang-format-corpus
 
 if [ "$BUILDBOT_CLOBBER" != "" ]; then





More information about the llvm-commits mailing list