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

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: Changed name to createOutputDirectory 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
« no previous file with comments | « tests/stub-generator/test_config.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.dart
diff --git a/tools/test.dart b/tools/test.dart
index c776db0c0139b55decc073fc071f3448e58b40e6..3990323ad2819a2058c6560752d157022df2cbee 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) {
@@ -113,6 +114,7 @@ main() {
startTime,
printTiming,
enqueueConfiguration,
- verbose: verbose,
- listTests: listTests);
+ verbose,
+ listTests,
+ keepGeneratedTests);
}
« no previous file with comments | « tests/stub-generator/test_config.dart ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698