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

Unified Diff: tools/testing/test_case.py

Issue 8469016: Adding in-browser correctness testing via selenium. (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 1427)
+++ tools/testing/test_case.py (working copy)
@@ -93,7 +93,7 @@
class BrowserTestCase(StandardTestCase):
- """A test case that executes inside a browser (or DumpRenderTree)."""
+ """A test case that executes inside DumpRenderTree."""
def __init__(self, context, path, filename,
fatal_static_type_errors, mode, arch, component, vm_options=None):
@@ -117,7 +117,7 @@
# If errors were found, fail fast and show compile errors:
if test_output.output.exit_code != 0:
return test_output
-
+
command = self.run_arch.GetRunCommand()
test_output = self.RunCommand(command)
# The return value of DumpRenderedTree does not indicate test failing, but

Powered by Google App Engine
This is Rietveld 408576698