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

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

Issue 9677007: Fix build breakage caused from revision 5341 in Windows. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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
===================================================================
--- tools/testing/dart/test_suite.dart (revision 5351)
+++ tools/testing/dart/test_suite.dart (working copy)
@@ -698,7 +698,7 @@
String getHtmlName(String filename) {
return filename.replaceAll('/', '_').replaceAll(':', '_')
- + configuration['component'] + '.html';
+ .replaceAll('\\', '_') + configuration['component'] + '.html';
Bill Hesse 2012/03/13 00:26:22 OK, but I don't know why we don't fix filename whe
Emily Fortuna 2012/03/13 00:33:51 I'm fine with fixing it initially -- it's just all
}
String get dumpRenderTreeFilename() {
« 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