Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * Classes and methods for executing tests. | 6 * Classes and methods for executing tests. |
| 7 * | 7 * |
| 8 * This module includes: | 8 * This module includes: |
| 9 * - Managing parallel execution of tests, including timeout checks. | 9 * - Managing parallel execution of tests, including timeout checks. |
| 10 * - Evaluating the output of each test as pass/fail/crash/timeout. | 10 * - Evaluating the output of each test as pass/fail/crash/timeout. |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 324 if (hasCrashed) return false; | 324 if (hasCrashed) return false; |
| 325 | 325 |
| 326 List<String> errors = []; | 326 List<String> errors = []; |
| 327 List<String> staticWarnings = []; | 327 List<String> staticWarnings = []; |
| 328 | 328 |
| 329 // Read the returned list of errors and stuff them away. | 329 // Read the returned list of errors and stuff them away. |
| 330 for (String line in super.stderr) { | 330 for (String line in super.stderr) { |
| 331 if (line.length == 0) continue; | 331 if (line.length == 0) continue; |
| 332 List<String> fields = splitMachineError(line); | 332 List<String> fields = splitMachineError(line); |
| 333 if (fields[0] == 'ERROR') { | 333 if (fields[0] == 'ERROR') { |
| 334 errors.add(fields); | 334 errors.add(fields[7]); |
|
Bill Hesse
2012/03/23 22:16:08
Perhaps add a comment that the relevant data is in
zundel
2012/03/24 01:06:39
Added constants.
In the case of multitests, it lo
| |
| 335 } else if (fields[0] == 'WARNING') { | 335 } else if (fields[0] == 'WARNING') { |
| 336 // We only care about testing Static type warnings | 336 // We only care about testing Static type warnings |
| 337 // ignore all others | 337 // ignore all others |
| 338 if (fields[1] == 'STATIC_TYPE') { | 338 if (fields[1] == 'STATIC_TYPE') { |
| 339 staticWarnings.add(fields); | 339 staticWarnings.add(fields[7]); |
| 340 } | 340 } |
| 341 } | 341 } |
| 342 // OK to Skip error output that doesn't match the machine format | 342 // OK to Skip error output that doesn't match the machine format |
| 343 } | 343 } |
| 344 if (testCase.info != null | 344 if (testCase.info != null |
| 345 && testCase.info.optionsFromFile['isMultitest']) { | 345 && testCase.info.optionsFromFile['isMultitest']) { |
| 346 return _didMultitestFail(errors, staticWarnings); | 346 return _didMultitestFail(errors, staticWarnings); |
| 347 } | 347 } |
| 348 return _didStandardTestFail(errors, staticWarnings); | 348 return _didStandardTestFail(errors, staticWarnings); |
| 349 } | 349 } |
| (...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1104 // the developer doesn't waste his or her time trying to fix a bunch of | 1104 // the developer doesn't waste his or her time trying to fix a bunch of |
| 1105 // tests that appear to be broken but were actually just flakes that | 1105 // tests that appear to be broken but were actually just flakes that |
| 1106 // didn't get retried because there had already been one failure. | 1106 // didn't get retried because there had already been one failure. |
| 1107 bool allowRetry = _MAX_FAILED_NO_RETRY > _progress.numFailedTests; | 1107 bool allowRetry = _MAX_FAILED_NO_RETRY > _progress.numFailedTests; |
| 1108 new RunningProcess(test, allowRetry, this).start(); | 1108 new RunningProcess(test, allowRetry, this).start(); |
| 1109 } | 1109 } |
| 1110 _numProcesses++; | 1110 _numProcesses++; |
| 1111 } | 1111 } |
| 1112 } | 1112 } |
| 1113 } | 1113 } |
| OLD | NEW |