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

Side by Side Diff: tools/bots/gn_tests.py

Issue 2412553002: Add buildbot scripts for GN builders and dartdevc testers (Closed)
Patch Set: Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « tools/bots/gn_build.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
4 # for details. All rights reserved. Use of this source code is governed by a
5 # BSD-style license that can be found in the LICENSE file.
6
7 import os
8 import os.path
9 import shutil
10 import sys
11 import subprocess
12
13 import bot
14 import bot_utils
15
16 utils = bot_utils.GetUtils()
17
18 BUILD_OS = utils.GuessOS()
19
20 (bot_name, _) = bot.GetBotName()
21 CHANNEL = bot_utils.GetChannelFromName(bot_name)
22
23 if __name__ == '__main__':
24 print "This step should test the sdk that was built using gn"
25 print "Current directory when running on a bot should be"
26 print "/b/build/slave/[builder name]/build/sdk"
27
OLDNEW
« no previous file with comments | « tools/bots/gn_build.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698