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

Unified Diff: utils/tests/pub/install/path/path_is_file_test.dart

Issue 12263018: Fix path tests on windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Try escaping the paths in the error message RegExps. Created 7 years, 10 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
Index: utils/tests/pub/install/path/path_is_file_test.dart
diff --git a/utils/tests/pub/install/path/path_is_file_test.dart b/utils/tests/pub/install/path/path_is_file_test.dart
index 56218367f98f7066ad1a68378d01817cb35693c6..29f39f67c4f7f08fdb39c2e38a2b17bf55cf0d2c 100644
--- a/utils/tests/pub/install/path/path_is_file_test.dart
+++ b/utils/tests/pub/install/path/path_is_file_test.dart
@@ -27,9 +27,15 @@ main() {
})
]).scheduleCreate();
+ // TODO(rnystrom): The "\" in a Windows path gets treated like a regex
+ // character, so hack escape. A better fix is to use a literal string
+ // instead of a RegExp to validate, but that requires us to move the
+ // stack traces out of the stderr when we invoke pub.
+ var escapePath = dummyPath.replaceAll(r"\", r"\\");
+
schedulePub(args: ['install'],
error: new RegExp("Path dependency for package 'foo' must refer to a "
- "directory, not a file. Was '$dummyPath'."),
+ "directory, not a file. Was '$escapePath'."),
exitCode: exit_codes.DATA);
});
}

Powered by Google App Engine
This is Rietveld 408576698