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

Unified Diff: tools/test.dart

Issue 12578017: fix to test.dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index f39518ac14790d7fbac4a48b21096461f3f02080..9a23cfa7c4f75f0387f1517704847fd927cbce7f 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -232,7 +232,7 @@ void testConfigurations(List<Map> configurations) {
void main() {
var optionsParser = new TestOptionsParser();
var configurations = optionsParser.parse(new Options().arguments);
- if (configurations != null || configurations.length > 0) {
+ if (configurations != null && configurations.length > 0) {
testConfigurations(configurations);
}
}
« 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