diff options
Diffstat (limited to 'libartbase/base/logging_test.cc')
-rw-r--r-- | libartbase/base/logging_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libartbase/base/logging_test.cc b/libartbase/base/logging_test.cc index 404e080b03..1456eb30fa 100644 --- a/libartbase/base/logging_test.cc +++ b/libartbase/base/logging_test.cc @@ -21,7 +21,7 @@ #include "android-base/logging.h" #include "base/bit_utils.h" #include "base/macros.h" -#include "common_runtime_test.h" +#include "gtest/gtest.h" #include "runtime_debug.h" namespace art { @@ -31,9 +31,9 @@ static void SimpleAborter(const char* msg) { _exit(1); } -class LoggingTest : public CommonRuntimeTest { +class LoggingTest : public testing::Test { protected: - void PostRuntimeCreate() OVERRIDE { + LoggingTest() { // In our abort tests we really don't want the runtime to create a real dump. android::base::SetAborter(SimpleAborter); } |