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': |