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

Unified Diff: tools/test.dart

Issue 9053009: Add --list option to tools/test.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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 | 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 47c62b39667e570c9b3d72b0ffada247db62dc29..c373427add3c1dc25e5c4b79c02c24068fdbd31b 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -38,6 +38,7 @@ main() {
var progressIndicator = firstConf['progress'];
var verbose = firstConf['verbose'];
var printTiming = firstConf['time'];
+ var listTests = firstConf['list'];
var configurationIterator = configurations.iterator();
bool enqueueConfiguration(ProcessQueue queue) {
@@ -101,8 +102,9 @@ main() {
// Start process queue.
var queue = new ProcessQueue(maxProcesses,
progressIndicator,
- verbose,
startTime,
printTiming,
- enqueueConfiguration);
+ enqueueConfiguration,
+ verbose: verbose,
+ listTests: listTests);
}
« no previous file with comments | « no previous file | tools/test-runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698