Returns true iff test failed.
| 17874 | |
| 17875 | // Returns true iff test failed. |
| 17876 | static bool TestFailed(const TestInfo* test_info) { |
| 17877 | return test_info->should_run() && test_info->result()->Failed(); |
| 17878 | } |
| 17879 | |
| 17880 | // Returns true iff test is disabled. |
| 17881 | static bool TestDisabled(const TestInfo* test_info) { |