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

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

Issue 974973002: fix status_reporter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/status_reporter.dart
diff --git a/tools/testing/dart/status_reporter.dart b/tools/testing/dart/status_reporter.dart
index 80d8f9e0f4770edd8c2e6e2c5013bc273115eef2..7536e1376c853f6093bd04aeb462f1977e23308f 100644
--- a/tools/testing/dart/status_reporter.dart
+++ b/tools/testing/dart/status_reporter.dart
@@ -160,12 +160,12 @@ void main(List<String> args) {
for (var combination in combinations) {
for (var mode in combination['modes']) {
if (!modes.contains(mode)) {
- break;
+ continue;
}
for (var arch in combination['archs']) {
if (!arches.contains(arch)) {
- break;
+ continue;
}
for (var runtime in combination['runtimes']) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698