Index: base/test/test_suite.h |
diff --git a/base/test/test_suite.h b/base/test/test_suite.h |
index 1758f867c3515ad9fe4ced9b7e76be6d7d378fed..9f139ed0f648d0b067a7135cf98ff5878398beaa 100644 |
--- a/base/test/test_suite.h |
+++ b/base/test/test_suite.h |
@@ -28,36 +28,17 @@ class TestSuite { |
TestSuite(int argc, char** argv); |
virtual ~TestSuite(); |
- // Returns true if the test is marked as flaky. |
- static bool IsMarkedFlaky(const testing::TestInfo& test); |
- |
- // Returns true if the test is marked as failing. |
- static bool IsMarkedFailing(const testing::TestInfo& test); |
- |
// Returns true if the test is marked as "MAYBE_". |
// When using different prefixes depending on platform, we use MAYBE_ and |
// preprocessor directives to replace MAYBE_ with the target prefix. |
static bool IsMarkedMaybe(const testing::TestInfo& test); |
- // Returns true if the test failure should be ignored. |
- static bool ShouldIgnoreFailure(const testing::TestInfo& test); |
- |
- // Returns true if the test failed and the failure shouldn't be ignored. |
- static bool NonIgnoredFailures(const testing::TestInfo& test); |
- |
- // Returns the number of tests where the match function returns true. |
- int GetTestCount(TestMatch test_match); |
- |
void CatchMaybeTests(); |
void ResetCommandLine(); |
int Run(); |
- // A command-line flag that makes a test failure always result in a non-zero |
- // process exit code. |
- static const char kStrictFailureHandling[]; |
- |
protected: |
// This constructor is only accessible to specialized test suite |
// implementations which need to control the creation of an AtExitManager |