| Index: base/test/test_suite.cc
|
| diff --git a/base/test/test_suite.cc b/base/test/test_suite.cc
|
| index 45b02f965fbdecc89cf639d77220f8f10744d48f..23ffa1ebe96a186e230ef03dec8455e2f46a1a25 100644
|
| --- a/base/test/test_suite.cc
|
| +++ b/base/test/test_suite.cc
|
| @@ -49,7 +49,7 @@ namespace {
|
|
|
| class MaybeTestDisabler : public testing::EmptyTestEventListener {
|
| public:
|
| - virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE {
|
| + virtual void OnTestStart(const testing::TestInfo& test_info) override {
|
| ASSERT_FALSE(TestSuite::IsMarkedMaybe(test_info))
|
| << "Probably the OS #ifdefs don't include all of the necessary "
|
| "platforms.\nPlease ensure that no tests have the MAYBE_ prefix "
|
| @@ -63,11 +63,11 @@ class TestClientInitializer : public testing::EmptyTestEventListener {
|
| : old_command_line_(CommandLine::NO_PROGRAM) {
|
| }
|
|
|
| - virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE {
|
| + virtual void OnTestStart(const testing::TestInfo& test_info) override {
|
| old_command_line_ = *CommandLine::ForCurrentProcess();
|
| }
|
|
|
| - virtual void OnTestEnd(const testing::TestInfo& test_info) OVERRIDE {
|
| + virtual void OnTestEnd(const testing::TestInfo& test_info) override {
|
| *CommandLine::ForCurrentProcess() = old_command_line_;
|
| }
|
|
|
|
|