| Index: dart/tools/testing/dart/test_suite.dart
|
| diff --git a/dart/tools/testing/dart/test_suite.dart b/dart/tools/testing/dart/test_suite.dart
|
| index 5a20ca17a85def60738938b024e0c949571bd998..659c50da2b4680ff486d09ebb30bcd46334298d6 100644
|
| --- a/dart/tools/testing/dart/test_suite.dart
|
| +++ b/dart/tools/testing/dart/test_suite.dart
|
| @@ -396,6 +396,11 @@ class StandardTestSuite implements TestSuite {
|
|
|
| if (TestUtils.isBrowserRuntime(configuration['runtime'])) {
|
| bool isWrappingRequired = configuration['compiler'] != 'dart2js';
|
| + if (configuration['runtime'] == 'ff' &&
|
| + Platform.operatingSystem == 'windows') {
|
| + // TODO(ahe): Investigate why this doesn't work on Windows.
|
| + isWrappingRequired = true;
|
| + }
|
| enqueueBrowserTest(info, testName, expectations, isWrappingRequired);
|
| } else {
|
| enqueueStandardTest(info, testName, expectations);
|
|
|