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

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

Issue 2547013003: Fuchsia: Build an OS image that includes Dart's test suite. (Closed)
Patch Set: Fix copyright year. Fix comment. Created 3 years, 11 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
« no previous file with comments | « tools/gen_fuchsia_test_manifest.py ('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_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index a3b30929efcf99b7dd15c9251cfaaadfaa2e2e5d..a5569121f6f467b2ddfa135b7807d6f8f057c173 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -2302,7 +2302,10 @@ class TestUtils {
static String outputDir(Map configuration) {
var result = '';
var system = configuration['system'];
- if (system == 'linux' || system == 'android' || system == 'windows') {
+ if (system == 'fuchsia' ||
+ system == 'linux' ||
+ system == 'android' ||
+ system == 'windows') {
result = 'out/';
} else if (system == 'macos') {
result = 'xcodebuild/';
@@ -2412,6 +2415,7 @@ class TestUtils {
case 'android':
os = 'Android';
break;
+ case 'fuchsia':
case 'linux':
case 'macos':
case 'windows':
« no previous file with comments | « tools/gen_fuchsia_test_manifest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698