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

Unified Diff: dart/tools/test.py

Issue 8518002: Handle co19 @dynamic-type-error better. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Don't use for-else Created 9 years, 1 month 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/tests/co19/testcfg.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/test.py
diff --git a/dart/tools/test.py b/dart/tools/test.py
index 4da60b7896a1463965c58f77cf6a42b8cb4b0238..3b13ca3ccdd80149f196c9daa6e708a999f0a302 100755
--- a/dart/tools/test.py
+++ b/dart/tools/test.py
@@ -591,7 +591,7 @@ class Context(object):
def __init__(self, workspace, verbose, os_name, timeout,
processor, suppress_dialogs, executable, flags,
- keep_temporary_files, use_batch):
+ keep_temporary_files, use_batch, checked):
self.workspace = workspace
self.verbose = verbose
self.os = os_name
@@ -602,6 +602,7 @@ class Context(object):
self.flags = flags
self.keep_temporary_files = keep_temporary_files
self.use_batch = use_batch == 'true'
+ self.checked = checked
def GetBuildRoot(self, mode, arch):
"""The top level directory containing compiler, runtime, tools..."""
@@ -1442,7 +1443,8 @@ def Main():
options.executable,
options.flags,
options.keep_temporary_files,
- options.batch)
+ options.batch,
+ options.checked)
# Get status for tests
sections = []
« no previous file with comments | « dart/tests/co19/testcfg.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698