| Index: tools/testing/dart/status_file_parser.dart
|
| diff --git a/tools/testing/dart/status_file_parser.dart b/tools/testing/dart/status_file_parser.dart
|
| index 3721df86442caca6cc585a072752cdc18044cd7a..6e60b7888d333fd4fa0b36556adde3bb2926d5bf 100644
|
| --- a/tools/testing/dart/status_file_parser.dart
|
| +++ b/tools/testing/dart/status_file_parser.dart
|
| @@ -56,7 +56,9 @@ void ReadTestExpectationsInto(TestExpectations expectations,
|
|
|
| void ReadConfigurationInto(path, sections, onDone) {
|
| File file = new File(path);
|
| - if (!file.existsSync()) return; // TODO(whesse): Handle missing file.
|
| + if (!file.existsSync()) {
|
| + throw new Exception('Cannot find test status file $path');
|
| + }
|
| InputStream file_stream = file.openInputStream();
|
| StringInputStream lines = new StringInputStream(file_stream);
|
|
|
|
|