[zorg] r222914 - sanitizer-bootstrap bot: make ubsan failures non-fatal

Evgeniy Stepanov eugeni.stepanov at gmail.com
Fri Nov 28 02:27:29 PST 2014


Author: eugenis
Date: Fri Nov 28 04:27:28 2014
New Revision: 222914

URL: http://llvm.org/viewvc/llvm-project?rev=222914&view=rev
Log:
sanitizer-bootstrap bot: make ubsan failures non-fatal

Someone needs to do a cleanup and re-enable; until then
"check-llvm ubsan" and "check-clang ubsan" will stay orange but
the bot in general will be green, so we would at least catch
regressions in the other testing modes.

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

Modified: zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_bootstrap.sh
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_bootstrap.sh?rev=222914&r1=222913&r2=222914&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_bootstrap.sh (original)
+++ zorg/trunk/zorg/buildbot/builders/sanitizers/buildbot_bootstrap.sh Fri Nov 28 04:27:28 2014
@@ -199,7 +199,7 @@ fi
   ninja clang) || echo @@@STEP_FAILURE@@@
 
 echo @@@BUILD_STEP check-llvm ubsan@@@
-(cd llvm_build_ubsan && ninja check-llvm) || echo @@@STEP_FAILURE@@@
+(cd llvm_build_ubsan && ninja check-llvm) || echo @@@STEP_WARNINGS@@@
 
 echo @@@BUILD_STEP check-clang ubsan@@@
-(cd llvm_build_ubsan && ninja check-clang) || echo @@@STEP_FAILURE@@@
+(cd llvm_build_ubsan && ninja check-clang) || echo @@@STEP_WARNINGS@@@





More information about the llvm-commits mailing list