Chromium Code Reviews

Unified Diff: lib/src/executable.dart

Issue 1088933006: Add IE support. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: lib/src/executable.dart
diff --git a/lib/src/executable.dart b/lib/src/executable.dart
index 7b0e6c72f74f22843e5be6e8fb6c8cbedc31dae2..33ac2aba03bdbccbbeedde1198066b6f12760a62 100644
--- a/lib/src/executable.dart
+++ b/lib/src/executable.dart
@@ -77,6 +77,7 @@ bool get _usesTransformer {
void main(List<String> args) {
var allPlatforms = TestPlatform.all.toList();
if (!Platform.isMacOS) allPlatforms.remove(TestPlatform.safari);
+ if (!Platform.isWindows) allPlatforms.remove(TestPlatform.internetExplorer);
_parser.addFlag("help", abbr: "h", negatable: false,
help: "Shows this usage information.");

Powered by Google App Engine