Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(896)

Unified Diff: dart/tools/testing/dart/scrub_status_file.dart

Issue 10915121: Update co19 to r328. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/tests/co19/co19-runtime.status ('k') | deps/all.deps/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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');
« no previous file with comments | « dart/tests/co19/co19-runtime.status ('k') | deps/all.deps/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698