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

Unified Diff: tools/test.dart

Issue 11343008: Land update to tools directory with new binaries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « tests/standalone/standalone.status ('k') | tools/test-runtime.dart » ('j') | 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 439aaad6592839c1b382136b0c190fc78a414a6b..fa057924decfd0652608332dfd85a5336924d9ec 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -99,10 +99,10 @@ main() {
var configurationIterator = configurations.iterator();
void enqueueConfiguration(ProcessQueue queue) {
- if (!configurationIterator.hasNext()) return;
+ if (!configurationIterator.hasNext) return;
var conf = configurationIterator.next();
- for (String key in selectors.getKeys()) {
+ for (String key in selectors.keys) {
if (key == 'co19') {
queue.addTestSuite(new Co19TestSuite(conf));
} else if (conf['runtime'] == 'vm' && key == 'vm') {
« no previous file with comments | « tests/standalone/standalone.status ('k') | tools/test-runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698