[zorg] r228215 - Limit the number of runs per each invocation of clang-format-fuzzer (so that the bot sees some output and doesn't timeout)

Kostya Serebryany kcc at google.com
Wed Feb 4 14:24:02 PST 2015


Author: kcc
Date: Wed Feb  4 16:24:01 2015
New Revision: 228215

URL: http://llvm.org/viewvc/llvm-project?rev=228215&view=rev
Log:
Limit the number of runs per each invocation of clang-format-fuzzer (so that the bot sees some output and doesn't timeout)

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=228215&r1=228214&r2=228215&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_fuzzer.sh (original)
+++ zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_fuzzer.sh Wed Feb  4 16:24:01 2015
@@ -73,5 +73,5 @@ echo @@@BUILD_STEP stage2/asan build cla
 
 echo @@@BUILD_STEP stage2/asan run clang-format-fuzzer@@@
 
-(${STAGE2_ASAN_DIR}/bin/clang-format-fuzzer -iterations=1 -jobs=8 -workers=8 $CLANG_FORMAT_CORPUS) || \
+(${STAGE2_ASAN_DIR}/bin/clang-format-fuzzer -jobs=32 -workers=8 -runs=1048576 $CLANG_FORMAT_CORPUS) || \
   echo @@@STEP_WARNINGS@@@





More information about the llvm-commits mailing list