Index: tools/testing/dart/test_configurations.dart |
diff --git a/tools/testing/dart/test_configurations.dart b/tools/testing/dart/test_configurations.dart |
index 7e690fe212a1b81fa9910b2e5d8633bc99107c36..bffb8629af7ac09004abb50b18df2ec74af6cab3 100644 |
--- a/tools/testing/dart/test_configurations.dart |
+++ b/tools/testing/dart/test_configurations.dart |
@@ -199,7 +199,8 @@ Future testConfigurations(List<Map> configurations) async { |
for (String key in selectors.keys) { |
if (key == 'co19') { |
testSuites.add(new Co19TestSuite(conf)); |
- } else if (conf['compiler'] == 'none' && |
+ } else if ((conf['compiler'] == 'dartk' || |
+ conf['compiler'] == 'none') && |
conf['runtime'] == 'vm' && |
key == 'vm') { |
// vm tests contain both cc tests (added here) and dart tests (added |