| 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 bd8e9f7287559ed5001cb15f78fc1c351bf4d185..80da691d2c8edfb470b5e0a8368373e469e824ed 100644
|
| --- a/tools/testing/dart/status_file_parser.dart
|
| +++ b/tools/testing/dart/status_file_parser.dart
|
| @@ -8,12 +8,12 @@
|
| #import("status_expression.dart");
|
|
|
| // Possible outcomes of running a test.
|
| -final CRASH = "Crash";
|
| -final TIMEOUT = "Timeout";
|
| -final FAIL = "Fail";
|
| -final PASS = "Pass";
|
| +final CRASH = "crash";
|
| +final TIMEOUT = "timeout";
|
| +final FAIL = "fail";
|
| +final PASS = "pass";
|
| // An indication to skip the test. The caller is responsible for skipping it.
|
| -final SKIP = "Skip";
|
| +final SKIP = "skip";
|
|
|
| final RegExp StripComment = const RegExp("^[^#]*");
|
| final RegExp HeaderPattern = const RegExp(@"^\[([^\]]+)\]");
|
|
|