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

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

Issue 125973002: Convert statusfile path to native path (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 11 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: dart/tools/testing/dart/test_suite.dart
diff --git a/dart/tools/testing/dart/test_suite.dart b/dart/tools/testing/dart/test_suite.dart
index 13dd1a6360cb9f173af133777c8b0f5818647518..3bb3b21c93c6a0d49e3465cb9133da7e874bb201 100644
--- a/dart/tools/testing/dart/test_suite.dart
+++ b/dart/tools/testing/dart/test_suite.dart
@@ -1801,7 +1801,8 @@ class PkgBuildTestSuite extends TestSuite {
doTest = onTest;
Map<String, String> _localPackageDirectories;
Map<String, String> _localSampleDirectories;
- List<String> statusFiles = ['${TestUtils.dartDir()}/$statusFilePath'];
+ List<String> statusFiles = [
+ TestUtils.dartDir().join(new Path(statusFilePath)).toNativePath()];
ReadTestExpectations(statusFiles, configuration).then((expectations) {
Future.wait([discoverPackagesInRepository(),
discoverSamplesInRepository()]).then((List results) {
« 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