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

Unified Diff: compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java

Issue 8223005: remove TestRunner and revector callers to DartRunner (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Get rid of TestRunner 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
Index: compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java
diff --git a/compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java b/compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java
index c8f68d121c2c85683206cd0d85b81984e9ca91b1..a6efac3579fbe2ffd26406cbf17b4df990ad21aa 100644
--- a/compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java
+++ b/compiler/javatests/com/google/dart/compiler/end2end/End2EndTestCase.java
@@ -89,13 +89,8 @@ public abstract class End2EndTestCase extends CompilerTestCase {
DartRunnerOptions verboseOptions = new CommandLineOptions.DartRunnerOptions();
verboseOptions.setVerbose(true);
try {
- DartRunner.compileAndRunApp(app,
- verboseOptions,
- config,
- listener,
- args,
- System.out,
- System.err);
+ DartRunner.compileAndRunApp(app, verboseOptions, config, listener, args,
+ System.out, System.err);
} catch (RhinoException e) {
// TODO(jgw): This is a hack to dump the translated source when something goes wrong. It can
// be removed as soon as we have a source map we can use to provide source-level errors.

Powered by Google App Engine
This is Rietveld 408576698