| Index: tools/testing/dart/test_runner.dart
|
| ===================================================================
|
| --- tools/testing/dart/test_runner.dart (revision 1815)
|
| +++ tools/testing/dart/test_runner.dart (working copy)
|
| @@ -36,8 +36,7 @@
|
| this.timeout,
|
| this.completedHandler,
|
| this.expectedOutcomes,
|
| - [isNegative = false])
|
| - : this.isNegative = isNegative {
|
| + [this.isNegative = false]) {
|
| if (!isNegative) {
|
| this.isNegative = displayName.contains("NegativeTest");
|
| }
|
| @@ -110,8 +109,7 @@
|
| List<String> stderr;
|
| List<Function> handlers;
|
|
|
| - RunningProcess(this.testCase, [timeout = NO_TIMEOUT])
|
| - : this.timeout = timeout;
|
| + RunningProcess(this.testCase, [this.timeout = NO_TIMEOUT]);
|
|
|
| void exitHandler(int exitCode) {
|
| new TestOutput(testCase, exitCode, timedOut, stdout,
|
|
|