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

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: Address comments 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
« no previous file with comments | « tools/testing/dart/test_progress.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index 8cef5a5f2915c39d6bdd32fd950efabe1a346132..e51bc05b4aa17c4a071eeb3e07deeafbaf60b17b 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -208,9 +208,9 @@ class RunningProcess {
Expect.isFalse(testCase.expectedOutcomes.contains(SKIP));
stdout = new List<String>();
stderr = new List<String>();
- if (testCase is BrowserTestCase) {
- runCommand(testCase.compilerPath,
- testCase.compilerArguments,
+ if (testCase is BrowserTestCase && testCase.dynamic.compilerPath != null) {
+ runCommand(testCase.dynamic.compilerPath,
+ testCase.dynamic.compilerArguments,
compilerExitHandler);
} else {
runCommand(testCase.executablePath, testCase.arguments, exitHandler);
« no previous file with comments | « tools/testing/dart/test_progress.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698