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

Unified Diff: compiler/javatests/com/google/dart/corelib/SharedTestCase.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/corelib/SharedTestCase.java
diff --git a/compiler/javatests/com/google/dart/corelib/SharedTestCase.java b/compiler/javatests/com/google/dart/corelib/SharedTestCase.java
index 34fe272471037e2ea9770719fbc3cdc3a6b3c858..ca534f9db8c67b6dc3b8d5a9edcd03d09d50ecde 100644
--- a/compiler/javatests/com/google/dart/corelib/SharedTestCase.java
+++ b/compiler/javatests/com/google/dart/corelib/SharedTestCase.java
@@ -16,8 +16,8 @@ import com.google.dart.compiler.DefaultLibrarySource;
import com.google.dart.compiler.LibrarySource;
import com.google.dart.compiler.Source;
import com.google.dart.compiler.UrlLibrarySource;
+import com.google.dart.runner.DartRunner;
import com.google.dart.runner.RunnerError;
-import com.google.dart.runner.TestRunner;
import com.google.dart.runner.V8Launcher;
import junit.framework.AssertionFailedError;
@@ -138,7 +138,7 @@ public class SharedTestCase extends TestCase {
if (regularCompile) {
invokeCompiler();
} else {
- TestRunner.throwingMain(arguments, outputStream, outputStream);
+ DartRunner.throwingMain(arguments, outputStream, outputStream);
}
} catch (RunnerError e) {
outputStream.close();

Powered by Google App Engine
This is Rietveld 408576698