| Index: dart/tools/testing/dart/scrub_status_file.dart
|
| diff --git a/dart/tools/testing/dart/scrub_status_file.dart b/dart/tools/testing/dart/scrub_status_file.dart
|
| index ba0bfe2f9c00f54d59c2101e376e4c87311c68c6..931d051587b7124a67284488c2379d925d4a4430 100644
|
| --- a/dart/tools/testing/dart/scrub_status_file.dart
|
| +++ b/dart/tools/testing/dart/scrub_status_file.dart
|
| @@ -21,10 +21,11 @@ const List<String> CO19_STATUS_FILES = const <String>[
|
| 'tests/co19/co19-runtime.status'];
|
|
|
| void onSectionsRead(String statusFile, List sections) {
|
| - print('Read sections');
|
| for (var section in sections) {
|
| for (var rule in section.testRules) {
|
| - String path = 'tests/co19/src/${rule.name}.dart';
|
| + String name = rule.name;
|
| + if (name == '*') continue;
|
| + String path = 'tests/co19/src/$name.dart';
|
| File file = new File(path);
|
| if (!file.existsSync()) {
|
| print('$statusFile: $path: no such file');
|
|
|