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

Unified Diff: dart/tests/co19/testcfg.py

Issue 8509014: Don't mark @static-type-errors as negative tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Updated status files 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/co19-runtime.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/co19/testcfg.py
diff --git a/dart/tests/co19/testcfg.py b/dart/tests/co19/testcfg.py
index c03591e37d227db9b72b41cf6470b730a5970ea6..f4250b9216aa0caffd8d877b07c0f5ba5b9f0d64 100644
--- a/dart/tests/co19/testcfg.py
+++ b/dart/tests/co19/testcfg.py
@@ -27,7 +27,8 @@ class Co19TestCase(test.TestCase):
def IsNegative(self):
if self._is_negative is None :
contents = self.GetSource()
- for tag in ('@compile-error','@static-type-error',
+ for tag in ('@compile-error',
+ # '@static-type-error',
'@dynamic-type-error', '@runtime-error'):
if tag in contents:
self._is_negative = True
@@ -38,7 +39,8 @@ class Co19TestCase(test.TestCase):
return self._is_negative
def GetLabel(self):
- return "%s%s %s %s" % (self.mode, self.arch, self.component, "/".join(self.path))
+ return "%s%s %s %s" % (self.mode, self.arch, self.component,
+ "/".join(self.path))
def GetCommand(self):
# Parse the options by reading the .dart source file.
« no previous file with comments | « dart/tests/co19/co19-runtime.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698