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

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

Issue 300973004: Once again, seems that there are still tests failing with 59 chars. Seems that (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 7bf4c72c77dbd55955976cac4b0b90a96da53edf..a0a3f73a250bd8ecd2a99cc5a74325e70f649368 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -2148,9 +2148,9 @@ class TestUtils {
path = 'multitest/${path.substring(index)}';
}
path = path.replaceAll('/', '_');
- final int WINDOWS_SHORTEN_PATH_LIMIT = 60;
+ final int WINDOWS_SHORTEN_PATH_LIMIT = 58;
if (Platform.operatingSystem == 'windows' &&
- path.length >= WINDOWS_SHORTEN_PATH_LIMIT) {
+ path.length > WINDOWS_SHORTEN_PATH_LIMIT) {
for (var key in PATH_REPLACEMENTS.keys) {
if (path.startsWith(key)) {
path = path.replaceFirst(key, PATH_REPLACEMENTS[key]);
« 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