diff options
author | 2014-02-24 23:23:58 -0800 | |
---|---|---|
committer | 2014-02-26 13:17:44 -0800 | |
commit | a1ce1fef2d49d1d537776a5308ace7102a815fe5 (patch) | |
tree | a1afe850d9ebd21f4b751eb68e1ec3dc60dab001 /runtime/base/mutex_test.cc | |
parent | 930f7b843ddc6e6530439d3fdb0e2133a6292f1e (diff) |
Split up CommonTest into CommonRuntimeTest and CommonCompilerTest
Change-Id: I8dcf6b29a5aecd445f1a3ddb06386cf81dbc9c70
Diffstat (limited to 'runtime/base/mutex_test.cc')
-rw-r--r-- | runtime/base/mutex_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/base/mutex_test.cc b/runtime/base/mutex_test.cc index 1af8e0ab99..ee0b1beba9 100644 --- a/runtime/base/mutex_test.cc +++ b/runtime/base/mutex_test.cc @@ -16,11 +16,11 @@ #include "mutex.h" -#include "common_test.h" +#include "common_runtime_test.h" namespace art { -class MutexTest : public CommonTest {}; +class MutexTest : public CommonRuntimeTest {}; struct MutexTester { static void AssertDepth(Mutex& mu, uint32_t expected_depth) { |