| Index: dart/tools/test.dart
|
| diff --git a/dart/tools/test.dart b/dart/tools/test.dart
|
| index 0f5836fc9b82a47e8486083216499ef6d0dfdba1..c96084db1aeca522361fa7e67ba5c1f1ef7d1561 100755
|
| --- a/dart/tools/test.dart
|
| +++ b/dart/tools/test.dart
|
| @@ -178,7 +178,9 @@ void testConfigurations(List<Map> configurations) {
|
| for (String key in selectors.keys) {
|
| if (key == 'co19') {
|
| testSuites.add(new Co19TestSuite(conf));
|
| - } else if (conf['runtime'] == 'vm' && key == 'vm') {
|
| + } else if (conf['compiler'] == 'none' &&
|
| + conf['runtime'] == 'vm' &&
|
| + key == 'vm') {
|
| // vm tests contain both cc tests (added here) and dart tests (added
|
| // in [TEST_SUITE_DIRECTORIES]).
|
| testSuites.add(new VMTestSuite(conf));
|
|
|