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

Unified Diff: tools/testing/dart/test_runner.dart

Issue 8995009: Implement chromium component. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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/dart/test_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index ca1fb7d8d2609b62bf826c75cea0a3a9ede408e4..f806a955143f6d856f51c89147a1ccddf8315678 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -213,8 +213,9 @@ class RunningProcess {
stdout = new List<String>();
stderr = new List<String>();
if (testCase is BrowserTestCase) {
- runCommand(testCase.compilerPath,
- testCase.compilerArguments,
+ BrowserTestCase browserTestCase = testCase;
+ runCommand(browserTestCase.compilerPath,
+ browserTestCase.compilerArguments,
compilerExitHandler);
} else {
runCommand(testCase.executablePath, testCase.arguments, exitHandler);

Powered by Google App Engine
This is Rietveld 408576698