diff options
author | 2014-02-24 23:23:58 -0800 | |
---|---|---|
committer | 2014-02-26 13:17:44 -0800 | |
commit | a1ce1fef2d49d1d537776a5308ace7102a815fe5 (patch) | |
tree | a1afe850d9ebd21f4b751eb68e1ec3dc60dab001 /compiler/jni/jni_compiler_test.cc | |
parent | 930f7b843ddc6e6530439d3fdb0e2133a6292f1e (diff) |
Split up CommonTest into CommonRuntimeTest and CommonCompilerTest
Change-Id: I8dcf6b29a5aecd445f1a3ddb06386cf81dbc9c70
Diffstat (limited to 'compiler/jni/jni_compiler_test.cc')
-rw-r--r-- | compiler/jni/jni_compiler_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/jni/jni_compiler_test.cc b/compiler/jni/jni_compiler_test.cc index 1bdff37f04..f48cf6c7b0 100644 --- a/compiler/jni/jni_compiler_test.cc +++ b/compiler/jni/jni_compiler_test.cc @@ -15,7 +15,7 @@ */ #include "class_linker.h" -#include "common_test.h" +#include "common_compiler_test.h" #include "dex_file.h" #include "gtest/gtest.h" #include "indirect_reference_table.h" @@ -43,7 +43,7 @@ extern "C" JNIEXPORT jint JNICALL Java_MyClassNatives_sbar(JNIEnv*, jclass, jint namespace art { -class JniCompilerTest : public CommonTest { +class JniCompilerTest : public CommonCompilerTest { protected: void CompileForTest(jobject class_loader, bool direct, const char* method_name, const char* method_sig) { |