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

Unified Diff: tools/test.dart

Issue 9240011: Add temporary directory for dartc compilation of tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use the correct version of DeMorgan's law when rearranging if statements. Created 8 years, 11 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
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index c776db0c0139b55decc073fc071f3448e58b40e6..38e968e5686e9b7b68c58266b4a0aa3974a1e30e 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -41,6 +41,7 @@ main() {
var verbose = firstConf['verbose'];
var printTiming = firstConf['time'];
var listTests = firstConf['list'];
+ var keepGeneratedTests = firstConf['keep-generated-tests'];
var configurationIterator = configurations.iterator();
bool enqueueConfiguration(ProcessQueue queue) {
@@ -107,6 +108,8 @@ main() {
return true;
}
+
Bill Hesse 2012/01/18 11:52:38 removed.
+
// Start process queue.
var queue = new ProcessQueue(maxProcesses,
progressIndicator,
@@ -114,5 +117,6 @@ main() {
printTiming,
enqueueConfiguration,
verbose: verbose,
- listTests: listTests);
+ listTests: listTests,
+ keepGeneratedTests: keepGeneratedTests);
}

Powered by Google App Engine
This is Rietveld 408576698