| 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) {
|
|
|