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

Unified Diff: utils/testrunner/options.dart

Issue 10977069: New testrunner that runs the test pipleine in an isolate. (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
Index: utils/testrunner/options.dart
===================================================================
--- utils/testrunner/options.dart (revision 13085)
+++ utils/testrunner/options.dart (working copy)
@@ -42,25 +42,19 @@
parser.addOption('list-format',
defaultsTo:
- '${Macros.testfile}${Macros.testGroup}${Macros.testDescription}',
+ '<FILENAME><GROUPNAME><TESTNAME>',
help: 'Format for test list result output.');
parser.addOption('pass-format',
- defaultsTo: 'PASS ${Macros.testTime}'
- '${Macros.testfile}${Macros.testGroup}'
- '${Macros.testDescription}${Macros.testMessage}',
+ defaultsTo: 'PASS <TIME><FILENAME><GROUPNAME><TESTNAME><MESSAGE>',
help: 'Format for passing test result output.');
parser.addOption('fail-format',
- defaultsTo: 'FAIL ${Macros.testTime}'
- '${Macros.testfile}${Macros.testGroup}'
- '${Macros.testDescription}${Macros.testMessage}',
+ defaultsTo: 'FAIL <TIME><FILENAME><GROUPNAME><TESTNAME><MESSAGE>',
help: 'Format for failed test result output.');
parser.addOption('error-format',
- defaultsTo: 'ERROR ${Macros.testTime}'
- '${Macros.testfile}${Macros.testGroup}'
- '${Macros.testDescription}${Macros.testMessage}',
+ defaultsTo: 'ERROR <TIME><FILENAME><GROUPNAME><TESTNAME><MESSAGE>',
help: 'Format for tests with errors result output.');
parser.addFlag('summary', defaultsTo: false,
@@ -154,6 +148,10 @@
parser.addOption('unittest', help: '#import path for unit test library.');
+ parser.addOption('pipeline',
+ help: 'Pipeline script to use to run each test file.',
+ defaultsTo: 'run_pipeline.dart');
+
return parser;
}

Powered by Google App Engine
This is Rietveld 408576698