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

Unified Diff: frog/presubmit.py

Issue 9873021: Move frog/leg to lib/compiler/implementation. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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 | « frog/leg/warnings.dart ('k') | frog/tests/leg/src/LinkTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/presubmit.py
===================================================================
--- frog/presubmit.py (revision 5925)
+++ frog/presubmit.py (working copy)
@@ -127,7 +127,7 @@
if args:
if options.leg_only:
- test_cmd.append('--component=dart2js')
+ test_cmd.extend('--compiler=dart2js', '--runtime=d8')
else:
test_cmd.append('--component=frogsh,dart2js')
test_cmd.extend(args)
@@ -153,21 +153,22 @@
# Run the "utils" tests which includes dartdoc. Frog/leg changes often
# break dartdoc and this tries to catch those.
- cmd = test_cmd + ['--component=vm', 'utils']
+ cmd = test_cmd + ['--compiler=none', '--runtime=vm', 'utils']
RunCommand(*cmd, verbose=True)
# Run leg unit tests.
- cmd = test_cmd + ['--component=vm', 'leg']
+ cmd = test_cmd + ['--compiler=none', '--runtime=vm', 'leg']
RunCommand(*cmd, verbose=True)
# Leg does not implement checked mode yet.
test_cmd.remove('--checked')
- cmd = test_cmd + ['--component=dart2js', 'leg_only', 'frog_native']
+ cmd = test_cmd + ['--compiler=dart2js', '--runtime=d8',
+ 'leg_only', 'frog_native']
RunCommand(*cmd, verbose=True)
# Run dart2js and legium on "built-in" tests.
- cmd = test_cmd + ['--component=dart2js,legium']
+ cmd = test_cmd + ['--compiler=dart2js', '--runtime=d8,drt']
RunCommand(*cmd, verbose=True)
« no previous file with comments | « frog/leg/warnings.dart ('k') | frog/tests/leg/src/LinkTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698