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

Side by Side Diff: tools/testing/test_case.py

Issue 8566021: Made changes to the test architecture so that we can run frameworks other than (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/testing/run_selenium.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 """Common TestCase subclasses used to define a single test.""" 5 """Common TestCase subclasses used to define a single test."""
6 6
7 import os 7 import os
8 import tempfile 8 import tempfile
9 9
10 import test 10 import test
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 if self.kind == 'compile-time error': 86 if self.kind == 'compile-time error':
87 return True 87 return True
88 if self.kind == 'runtime error': 88 if self.kind == 'runtime error':
89 return True 89 return True
90 if self.kind == 'static type error': 90 if self.kind == 'static type error':
91 return self.run_arch.HasFatalTypeErrors() 91 return self.run_arch.HasFatalTypeErrors()
92 return False 92 return False
93 93
94 94
95 class BrowserTestCase(StandardTestCase): 95 class BrowserTestCase(StandardTestCase):
96 """A test case that executes inside DumpRenderTree.""" 96 """A test case that executes inside DumpRenderTree or a browser."""
97 97
98 def __init__(self, context, path, filename, 98 def __init__(self, context, path, filename,
99 fatal_static_type_errors, mode, arch, component, vm_options=None) : 99 fatal_static_type_errors, mode, arch, component, vm_options=None) :
100 super(BrowserTestCase, self).__init__( 100 super(BrowserTestCase, self).__init__(
101 context, path, filename, mode, arch, component, vm_options) 101 context, path, filename, mode, arch, component, vm_options)
102 self.fatal_static_type_errors = fatal_static_type_errors 102 self.fatal_static_type_errors = fatal_static_type_errors
103 103
104 def Run(self): 104 def Run(self):
105 """Optionally compiles and then runs the specified test.""" 105 """Optionally compiles and then runs the specified test."""
106 command = self.run_arch.GetCompileCommand(self.fatal_static_type_errors) 106 command = self.run_arch.GetCompileCommand(self.fatal_static_type_errors)
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 self.filename] 161 self.filename]
162 162
163 return cmd 163 return cmd
164 164
165 def GetName(self): 165 def GetName(self):
166 return self.path[-1] 166 return self.path[-1]
167 167
168 def Cleanup(self): 168 def Cleanup(self):
169 if not self.context.keep_temporary_files: 169 if not self.context.keep_temporary_files:
170 self.run_arch.Cleanup() 170 self.run_arch.Cleanup()
OLDNEW
« no previous file with comments | « tools/testing/run_selenium.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698