| Index: tools/testing/dart/test_suite.dart
|
| ===================================================================
|
| --- tools/testing/dart/test_suite.dart (revision 42448)
|
| +++ tools/testing/dart/test_suite.dart (working copy)
|
| @@ -276,12 +276,13 @@
|
|
|
| // Update Summary report
|
| if (configuration['report']) {
|
| - SummaryReport.add(expectations);
|
| if (testCase.expectCompileError &&
|
| TestUtils.isBrowserRuntime(configuration['runtime']) &&
|
| new CompilerConfiguration(configuration).hasCompiler) {
|
| SummaryReport.addCompileErrorSkipTest();
|
| return;
|
| + } else {
|
| + SummaryReport.add(expectations);
|
| }
|
| }
|
|
|
|
|