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

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

Issue 10914250: Require wrapping for Firefox/Windows (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698