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

Unified Diff: dart/frog/presubmit.py

Issue 9185010: Cancel the compilation if the SSA builder attempts to visit a type annotation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 11 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 | « dart/frog/leg/ssa/builder.dart ('k') | dart/tests/language/language-leg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/frog/presubmit.py
diff --git a/dart/frog/presubmit.py b/dart/frog/presubmit.py
index 813175799c69cabae1363b0957a5dd77b4210afb..b81c8553282f9fa6b422ff81210b8d0879edc8e7 100755
--- a/dart/frog/presubmit.py
+++ b/dart/frog/presubmit.py
@@ -148,9 +148,6 @@ def main():
'isolate', 'peg', 'frog', 'css']
RunCommand(*cmd, verbose=True)
- cmd = test_cmd + ['--component=frogsh', 'leg', 'leg_only']
- RunCommand(*cmd, verbose=True)
-
# Run leg on "built-in" tests.
cmd = test_cmd + ['--component=leg']
RunCommand(*cmd, verbose=True)
@@ -161,6 +158,9 @@ def main():
cmd = test_cmd + ['--component=vm', 'leg']
RunCommand(*cmd, verbose=True)
+ cmd = test_cmd + ['--component=frogsh', 'leg', 'leg_only']
ngeoffray 2012/01/11 16:25:42 Thank you!
+ RunCommand(*cmd, verbose=True)
+
if __name__ == '__main__':
try:
sys.exit(main())
« no previous file with comments | « dart/frog/leg/ssa/builder.dart ('k') | dart/tests/language/language-leg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698