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

Unified Diff: tools/test-runtime.dart

Issue 10271014: test rename overhaul: step 14 - vm tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: tools/test-runtime.dart
diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
index a159ca573c5d98b6d40c8c05babe18e003d66cdb..612bfcc5f89e2114bc49148b3db07c124d342114 100755
--- a/tools/test-runtime.dart
+++ b/tools/test-runtime.dart
@@ -25,6 +25,7 @@
* moved to here, if possible.
*/
final TEST_SUITE_DIRECTORIES = const [
+ 'runtime/tests/vm',
'tests/corelib',
'tests/isolate',
'tests/language',
@@ -74,8 +75,9 @@ main() {
queue.addTestSuite(new Co19TestSuite(conf));
}
if (conf['runtime'] == 'vm' && selectors.containsKey('vm')) {
+ // vm tests contain both cc tests (added here) and dart tests (added in
+ // [TEST_SUITE_DIRECTORIES]).
queue.addTestSuite(new VMTestSuite(conf));
- queue.addTestSuite(new VMDartTestSuite(conf));
}
for (final testSuiteDir in TEST_SUITE_DIRECTORIES) {

Powered by Google App Engine
This is Rietveld 408576698