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

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

Issue 14911003: Fix d8 path for Windows. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 ea8877b8f9cc5d212703a07467a9853be3b8ef3a..bd0ddbd3790bdb07c51948331ff964488f75231b 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -200,8 +200,9 @@ abstract class TestSuite {
String get d8FileName {
var suffix = getExecutableSuffix('d8');
- var d8Dir = '${TestUtils.dartDir()}/third_party/d8';
- var d8 = '$d8Dir/${Platform.operatingSystem}/d8$suffix';
+ var d8Dir = TestUtils.dartDir().append('third_party/d8');
+ var d8Path = d8Dir.append('${Platform.operatingSystem}/d8$suffix');
+ var d8 = d8Path.toNativePath();
TestUtils.ensureExists(d8, configuration);
return d8;
}
« 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