| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 71a3e78e696609178e2006560f135f60d10591ad..fae942b1926e1d05af25d5e183cd7dfeaba971e1 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -142,6 +142,14 @@ void testConfigurations(List<Map> configurations) {
|
| }
|
|
|
| for (String key in selectors.keys) {
|
| + for (final testSuiteDir in TEST_SUITE_DIRECTORIES) {
|
| + final name = testSuiteDir.filename;
|
| + if (selectors.containsKey(name)) {
|
| + testSuites.add(
|
| + new StandardTestSuite.forDirectory(conf, testSuiteDir));
|
| + }
|
| + }
|
| +
|
| if (key == 'co19') {
|
| testSuites.add(new Co19TestSuite(conf));
|
| } else if (conf['runtime'] == 'vm' && key == 'vm') {
|
| @@ -164,14 +172,6 @@ void testConfigurations(List<Map> configurations) {
|
| }
|
| }
|
| }
|
| -
|
| - for (final testSuiteDir in TEST_SUITE_DIRECTORIES) {
|
| - final name = testSuiteDir.filename;
|
| - if (selectors.containsKey(name)) {
|
| - testSuites.add(
|
| - new StandardTestSuite.forDirectory(conf, testSuiteDir));
|
| - }
|
| - }
|
| }
|
|
|
| void allTestsFinished() {
|
|
|