diff options
author | 2014-02-24 23:23:58 -0800 | |
---|---|---|
committer | 2014-02-26 13:17:44 -0800 | |
commit | a1ce1fef2d49d1d537776a5308ace7102a815fe5 (patch) | |
tree | a1afe850d9ebd21f4b751eb68e1ec3dc60dab001 /compiler/image_test.cc | |
parent | 930f7b843ddc6e6530439d3fdb0e2133a6292f1e (diff) |
Split up CommonTest into CommonRuntimeTest and CommonCompilerTest
Change-Id: I8dcf6b29a5aecd445f1a3ddb06386cf81dbc9c70
Diffstat (limited to 'compiler/image_test.cc')
-rw-r--r-- | compiler/image_test.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/compiler/image_test.cc b/compiler/image_test.cc index 49cabdce79..16e2aa208a 100644 --- a/compiler/image_test.cc +++ b/compiler/image_test.cc @@ -14,15 +14,16 @@ * limitations under the License. */ +#include "image.h" + #include <string> #include <vector> -#include "common_test.h" +#include "common_compiler_test.h" #include "compiler/elf_fixup.h" #include "compiler/image_writer.h" #include "compiler/oat_writer.h" #include "gc/space/image_space.h" -#include "image.h" #include "lock_word.h" #include "mirror/object-inl.h" #include "signal_catcher.h" @@ -32,11 +33,11 @@ namespace art { -class ImageTest : public CommonTest { +class ImageTest : public CommonCompilerTest { protected: virtual void SetUp() { ReserveImageSpace(); - CommonTest::SetUp(); + CommonCompilerTest::SetUp(); } }; |