Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: tools/clang/scripts/update.sh

Issue 12207126: Add mini11-a1 (Mac ASan LKGR) to the list of hosts building Mac ASan binaries (those hosts should u… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/scripts/update.sh
===================================================================
--- tools/clang/scripts/update.sh (revision 181919)
+++ tools/clang/scripts/update.sh (working copy)
@@ -77,9 +77,15 @@
# Are we on a Chrome buildbot running ASan?
function on_asan_mac_host {
HOST="$(uname -n)"
+ # Chrome Mac ASan Builder.
if [[ "${HOST}" == "vm633-m1.golo.chromium.org" ]]; then
return 0
fi
+ # Chrome Mac ASan LKGR.
+ if [[ "${HOST}" == "mini11-a1.golo.chromium.org" ]]; then
+ return 0
+ fi
+ # mac_asan trybots.
for num in $(seq 600 655)
do
if [[ "${HOST}" == "vm${num}-m4.golo.chromium.org" ]]; then
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698