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

Unified Diff: utils/testrunner/configuration.dart

Issue 10909240: Support for pixel layout tests. (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 | « no previous file | utils/testrunner/dart_wrap_task.dart » ('j') | utils/testrunner/dart_wrap_task.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/testrunner/configuration.dart
===================================================================
--- utils/testrunner/configuration.dart (revision 12649)
+++ utils/testrunner/configuration.dart (working copy)
@@ -14,6 +14,8 @@
final bool runIsolated;
final bool verbose;
final bool immediateOutput;
+ final bool layoutText;
+ final bool layoutPixel;
final bool produceSummary;
final bool includeTime;
final bool listFiles;
@@ -34,7 +36,7 @@
final String outputStream;
final String logStream;
final String tempDir;
- final bool generateRenders;
+ final bool regenerate;
String dart2jsPath;
String drtPath;
String dartPath;
@@ -46,6 +48,8 @@
runInBrowser = (options['runtime'] != 'vm'),
verbose = (options['log'] != 'none' && !options['list-groups']),
immediateOutput = options['immediate'],
+ layoutText = options['layout-text'],
+ layoutPixel = options['layout-pixel'],
produceSummary = options['summary'],
includeTime = options['time'],
listFiles = options['list-files'],
@@ -57,17 +61,17 @@
errorFormat = options['error-format'],
includeFilter = options['include'],
excludeFilter = options['exclude'],
- timeout = parseInt(options['timeout']),
+ timeout = int.parse(options['timeout']),
runtime = options['runtime'],
checkedMode = options['checked'],
keepTests = (options['keep-files'] &&
!(options['list-groups'] || options['list-tests'])),
stopOnFailure = options['stop-on-failure'],
- maxTasks = parseInt(options['tasks']),
+ maxTasks = int.parse(options['tasks']),
outputStream = options['out'],
logStream = options['log'],
tempDir = options['tempdir'],
- generateRenders = options['generate-renders'] {
+ regenerate = options['regenerate'] {
filtering = (includeFilter.length > 0 || excludeFilter.length > 0);
var dartsdk = options['dartsdk'];
var pathSep = Platform.pathSeparator;
« no previous file with comments | « no previous file | utils/testrunner/dart_wrap_task.dart » ('j') | utils/testrunner/dart_wrap_task.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698