| Index: dart/tools/testing/dart/test_suite.dart
|
| diff --git a/dart/tools/testing/dart/test_suite.dart b/dart/tools/testing/dart/test_suite.dart
|
| index e05e7ab187f4f70152880260f1df6f99f14c3148..0b6904b50451117bbf0b3a123970f08b78962b45 100644
|
| --- a/dart/tools/testing/dart/test_suite.dart
|
| +++ b/dart/tools/testing/dart/test_suite.dart
|
| @@ -287,8 +287,8 @@ abstract class TestSuite {
|
| // Update Summary report
|
| if (configuration['report']) {
|
| SummaryReport.add(expectations);
|
| -
|
| - if (testCase.info.hasCompileError &&
|
| + if (testCase.info != null &&
|
| + testCase.info.hasCompileError &&
|
| TestUtils.isBrowserRuntime(configuration['runtime']) &&
|
| configuration['compiler'] != 'none') {
|
| SummaryReport.addCompileErrorSkipTest();
|
|
|