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

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

Issue 839543002: Revert "Build Observatory with runtime" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 | « tools/testing/dart/test_configurations.dart ('k') | 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 7253aec6e2d8019bc5f9c12b86ca8a1158a1c3a1..98a68066aeb31244a2500fbc42755d1924da3022 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -407,7 +407,7 @@ abstract class TestSuite {
* pkg/PACKAGE_NAME
* pkg/third_party/PACKAGE_NAME
* third_party/pkg/PACKAGE_NAME
- * runtime/observatory/PACKAGE_NAME
+ * runtime/bin/vmservice/PACKAGE_NAME
*/
// Directories containing "-" are not valid pub packages and we therefore
@@ -420,7 +420,8 @@ abstract class TestSuite {
listDir(dartDir.append('pkg'), isValid),
listDir(dartDir.append('pkg').append('third_party'), isValid),
listDir(dartDir.append('third_party').append('pkg'), isValid),
- listDir(dartDir.append('runtime').append('observatory'), isValid),
+ listDir(dartDir.append('runtime').append('bin').append('vmservice'),
+ isValid),
];
return Future.wait(futures).then((results) {
var packageDirectories = {};
« no previous file with comments | « tools/testing/dart/test_configurations.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698