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

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

Issue 8539044: Enable co19 test suite on dart test scripts. (Closed) Base URL: https://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
« tests/co19/test_config.dart ('K') | « tools/testing/dart/test_options.dart ('k') | no next file » | 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 b7767ced45c3d161f8596d8b939ac72df5f2b18a..6a7b2a11202e55c24bd8c3b03d92da854683063c 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -20,10 +20,10 @@ final int NO_TIMEOUT = 0;
String getBuildDir(Map configuration) {
var buildDir = '';
- var os = configuration['os'];
- if (os == 'linux') {
+ var system = configuration['system'];
+ if (system == 'linux') {
buildDir = 'out/';
- } else if (os == 'macos') {
+ } else if (system == 'macos') {
buildDir = 'xcodebuild/';
}
buildDir += (configuration['mode'] == 'debug') ? 'Debug_' : 'Release_';
« tests/co19/test_config.dart ('K') | « tools/testing/dart/test_options.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698