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

Unified Diff: tools/testing/test_case.py

Issue 8258016: Fix running of tests on Chromium and Dartium (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 | tools/testing/test_configuration.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/test_case.py
diff --git a/tools/testing/test_case.py b/tools/testing/test_case.py
index e7013f0138011cc823670610274ad32dd351cee4..901bb5f5257533f76716ec8e989762a998d7d174 100644
--- a/tools/testing/test_case.py
+++ b/tools/testing/test_case.py
@@ -90,8 +90,9 @@ class BrowserTestCase(StandardTestCase):
"""A test case that executes inside a browser (or DumpRenderTree)."""
def __init__(self, context, path, filename,
- fatal_static_type_errors, mode, arch):
- super(BrowserTestCase, self).__init__(context, path, filename, mode, arch)
+ fatal_static_type_errors, mode, arch, vm_options=None):
+ super(BrowserTestCase, self).__init__(
+ context, path, filename, mode, arch, vm_options)
self.fatal_static_type_errors = fatal_static_type_errors
def Run(self):
« no previous file with comments | « no previous file | tools/testing/test_configuration.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698