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

Unified Diff: tools/testing/test_case.py

Issue 8496009: Add a leg_only test suite, and make sure to run it in our presubmit script. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' 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
Index: tools/testing/test_case.py
===================================================================
--- tools/testing/test_case.py (revision 1300)
+++ tools/testing/test_case.py (working copy)
@@ -64,9 +64,10 @@
class MultiTestCase(StandardTestCase):
"""Multiple test cases defined within a single *Test.dart file."""
- def __init__(self, context, path, filename, kind, mode, arch, component):
+ def __init__(self, context, path, filename, kind, mode, arch, component,
+ vm_options = None):
super(MultiTestCase, self).__init__(context, path, filename, mode, arch,
- component)
+ component, vm_options)
self.kind = kind
def GetCommand(self):

Powered by Google App Engine
This is Rietveld 408576698