Index: tools/testing/dart/test_suite.dart |
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart |
index 8bc8e9a165c7f2452c6ad53b145c786f3c2398ee..ca959a89a992ea6bf13b33d375dd80c5cadfc8d0 100644 |
--- a/tools/testing/dart/test_suite.dart |
+++ b/tools/testing/dart/test_suite.dart |
@@ -2235,12 +2235,10 @@ class TestUtils { |
static String outputDir(Map configuration) { |
var result = ''; |
var system = configuration['system']; |
- if (system == 'linux' || system == 'android') { |
+ if (system == 'linux' || system == 'android' || system == 'windows') { |
result = 'out/'; |
} else if (system == 'macos') { |
result = 'xcodebuild/'; |
- } else if (system == 'windows') { |
- result = 'build/'; |
} else { |
throw new Exception('Unknown operating system: "$system"'); |
} |