diff options
author | 2014-02-24 23:23:58 -0800 | |
---|---|---|
committer | 2014-02-26 13:17:44 -0800 | |
commit | a1ce1fef2d49d1d537776a5308ace7102a815fe5 (patch) | |
tree | a1afe850d9ebd21f4b751eb68e1ec3dc60dab001 /runtime/gc/heap_test.cc | |
parent | 930f7b843ddc6e6530439d3fdb0e2133a6292f1e (diff) |
Split up CommonTest into CommonRuntimeTest and CommonCompilerTest
Change-Id: I8dcf6b29a5aecd445f1a3ddb06386cf81dbc9c70
Diffstat (limited to 'runtime/gc/heap_test.cc')
-rw-r--r-- | runtime/gc/heap_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/gc/heap_test.cc b/runtime/gc/heap_test.cc index 4b863397c4..07e5088f52 100644 --- a/runtime/gc/heap_test.cc +++ b/runtime/gc/heap_test.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "common_test.h" +#include "common_runtime_test.h" #include "gc/accounting/card_table-inl.h" #include "gc/accounting/space_bitmap-inl.h" #include "mirror/class-inl.h" @@ -25,7 +25,7 @@ namespace art { namespace gc { -class HeapTest : public CommonTest {}; +class HeapTest : public CommonRuntimeTest {}; TEST_F(HeapTest, ClearGrowthLimit) { Heap* heap = Runtime::Current()->GetHeap(); |