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

Unified Diff: testing/buildbot/manage.py

Issue 1106853002: Update lists of compile targets for the GN bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove nacl_loader_unttests from dbg bots Created 5 years, 8 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 | « testing/buildbot/client.v8.json ('k') | testing/buildbot/tryserver.blink.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/buildbot/manage.py
diff --git a/testing/buildbot/manage.py b/testing/buildbot/manage.py
index e061ea27b4eb30980e639e1bd4fb8dd04dad143b..bc362fd221b1f4578f44b542ba8fb04aff39f8ed 100755
--- a/testing/buildbot/manage.py
+++ b/testing/buildbot/manage.py
@@ -97,7 +97,11 @@ def main():
filename = os.path.basename(filepath)
with open(filepath) as f:
content = f.read()
- config = json.loads(content)
+ try:
+ config = json.loads(content)
+ except ValueError as e:
+ print "Exception raised while checking %s: %s" % (filepath, e)
+ raise
for builder, data in sorted(config.iteritems()):
if builder in SKIP:
# Oddities.
« no previous file with comments | « testing/buildbot/client.v8.json ('k') | testing/buildbot/tryserver.blink.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698