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

Unified Diff: client/tools/buildbot_annotated_steps.py

Issue 8387017: Allow running frog tests on bot (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: '' Created 9 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 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: client/tools/buildbot_annotated_steps.py
diff --git a/client/tools/buildbot_annotated_steps.py b/client/tools/buildbot_annotated_steps.py
index 6a70fd499340e0ab5994bca83184081c7e00af8a..deda7d0d310a541335775e1a89ad911322c5892d 100644
--- a/client/tools/buildbot_annotated_steps.py
+++ b/client/tools/buildbot_annotated_steps.py
@@ -155,7 +155,7 @@ def ProcessTools(srcpath, mode, name, version):
build and test the tools
args:
- srcpath - the locatio of the source code to build
+ srcpath - the location of the source code to build
mode - the mode release or debug
version - the svn version of the currently checked out code
'''
@@ -177,6 +177,19 @@ def ProcessTools(srcpath, mode, name, version):
'--name=' + name, '--out=' + outdir]
return subprocess.call(cmds)
+def ProcessFrog(srcpath):
jimhug 2011/10/25 16:24:16 I have minor fears for the frog here ... <smile>
+ '''
+ build and test experimental frog build
+
+ args:
+ srcpath - the location of the source code to build
+ '''
+ print 'ProcessFrog'
+
+ return subprocess.call([sys.executable,
+ os.path.join(srcpath, '..', 'frog',
+ 'scripts', 'buildbot_annotated_steps.py')])
+
def main():
print 'main'
if len(sys.argv) == 0:
@@ -189,6 +202,9 @@ def main():
(name, version, arch, mode, platform) = GetBuildInfo(srcpath)
if name == 'dart-editor':
status = ProcessTools(srcpath, mode, name, version)
+ #TODO(sigmund): remove this indirection once we update out bots
+ elif name.startswith('frog'):
+ status = ProcessFrog(srcpath)
else:
status = ProcessDartClientTests(srcpath, arch, mode, platform, name)
« 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