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

Unified Diff: utils/testrunner/configuration.dart

Issue 10914049: Added support for layout render tests. These use expected values for the text render output from Du… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 | « pkg/unittest/unittest.dart ('k') | utils/testrunner/dart_wrap_task.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/testrunner/configuration.dart
===================================================================
--- utils/testrunner/configuration.dart (revision 11963)
+++ utils/testrunner/configuration.dart (working copy)
@@ -34,6 +34,7 @@
final String outputStream;
final String logStream;
final String tempDir;
+ final bool generateRenders;
String dart2jsPath;
String drtPath;
String dartPath;
@@ -65,7 +66,8 @@
maxTasks = parseInt(options['tasks']),
outputStream = options['out'],
logStream = options['log'],
- tempDir = options['tempdir'] {
+ tempDir = options['tempdir'],
+ generateRenders = options['generate-renders'] {
filtering = (includeFilter.length > 0 || excludeFilter.length > 0);
var dartsdk = options['dartsdk'];
var pathSep = Platform.pathSeparator;
« no previous file with comments | « pkg/unittest/unittest.dart ('k') | utils/testrunner/dart_wrap_task.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698