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

Unified Diff: tools/test-runtime.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 | « tools/test.dart ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test-runtime.dart
diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
index 2b356237fa7d2bf4ba36d82f29e014f56eec269c..4b697c26d45911f058900886c972dcf7b74b3a2d 100755
--- a/tools/test-runtime.dart
+++ b/tools/test-runtime.dart
@@ -32,6 +32,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) {
@@ -68,8 +69,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 | « tools/test.dart ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698