Chromium Code Reviews| 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 3c1ae7c5c145cce13f0793e10a58228b07b379c4..d7a7345214ba3381667fa64ecf7a0bc30967bbdf 100644 |
| --- a/tools/testing/dart/status_file_parser.dart |
| +++ b/tools/testing/dart/status_file_parser.dart |
| @@ -30,7 +30,7 @@ String getFilename(String path) => |
| void ReadConfigurationInto(path, sections) { |
| File file = new File(getFilename(path)); |
| - Expect.isTrue(file.existsSync()); // TODO(whesse): Handle missing file. |
| + if (!file.existsSync()) return; // TODO(whesse): Handle missing file. |
|
Mads Ager (google)
2011/11/02 10:47:34
This seems like the wrong fix. Please change the t
|
| FileInputStream file_stream = file.openInputStream(); |
| StringInputStream lines = new StringInputStream(file_stream); |