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

Unified Diff: pkg/analyzer/test/src/summary/resynthesize_common.dart

Issue 2522113002: Disable test_import_short_absolute on Windows. (Closed)
Patch Set: Created 4 years, 1 month 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: pkg/analyzer/test/src/summary/resynthesize_common.dart
diff --git a/pkg/analyzer/test/src/summary/resynthesize_common.dart b/pkg/analyzer/test/src/summary/resynthesize_common.dart
index be1ba73935d0d1d346dc3dcf20e2d6aebb7b000d..bd880def890440bd0350be59c80f896b2d4894fb 100644
--- a/pkg/analyzer/test/src/summary/resynthesize_common.dart
+++ b/pkg/analyzer/test/src/summary/resynthesize_common.dart
@@ -3434,6 +3434,12 @@ class D extends p.C {} // Prevent "unused import" warning
}
test_import_short_absolute() {
+ if (resourceProvider.pathContext.separator == '\\') {
+ // This test fails on Windows due to
+ // https://github.com/dart-lang/path/issues/18
+ // TODO(paulberry): reenable once that bug is addressed.
+ return;
+ }
testFile = '/my/project/bin/test.dart';
addLibrarySource('/a.dart', 'class C {}');
checkLibrary('import "/a.dart"; C c;');
« 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