Chromium Code Reviews| Index: tools/testing/dart/status_file_parser.dart |
| =================================================================== |
| --- tools/testing/dart/status_file_parser.dart (revision 14350) |
| +++ tools/testing/dart/status_file_parser.dart (working copy) |
| @@ -25,7 +25,7 @@ |
| const RegExp StripComment = const RegExp("^[^#]*"); |
| const RegExp HeaderPattern = const RegExp(r"^\[([^\]]+)\]"); |
| -const RegExp RulePattern = const RegExp(r"\s*([^: ]*)\s*:(.*)"); |
|
Emily Fortuna
2012/11/01 05:19:11
I changed this regexp so that test descriptions co
Bill Hesse
2012/11/01 20:26:00
This might lead to exponential backtracking, becau
|
| +const RegExp RulePattern = const RegExp(r"\s*([^:]*)\s*:(.*)"); |
| // TODO(whesse): Implement configuration_info library that contains data |
| // structures for test configuration, including Section. |