diff options
author | 2011-08-17 16:28:14 -0700 | |
---|---|---|
committer | 2011-08-17 21:51:13 -0700 | |
commit | f734cf55d510976f4862b15e35fc86eae2a3daf8 (patch) | |
tree | cdb1077841e6be87353c27f2a30d352ac627663a /src/common_test.h | |
parent | 0af5543f8ea20c3e655b2d748a1b7dcf283792fe (diff) |
Add ParsedOptions test (and migrate RuntimeTest to CommonTest)
Change-Id: Ic338520dfaca2228260e546ed1522c37b83f42ac
Diffstat (limited to 'src/common_test.h')
-rw-r--r-- | src/common_test.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common_test.h b/src/common_test.h index bfc58f6183..14a68a2de0 100644 --- a/src/common_test.h +++ b/src/common_test.h @@ -319,7 +319,7 @@ class ScratchFile { int fd_; }; -class RuntimeTest : public testing::Test { +class CommonTest : public testing::Test { protected: virtual void SetUp() { is_host_ = getenv("ANDROID_BUILD_TOP") != NULL; @@ -416,7 +416,7 @@ class RuntimeTest : public testing::Test { bool is_host_; scoped_ptr_malloc<char> android_data_; std::string art_cache_; - scoped_ptr<DexFile> java_lang_dex_file_; + scoped_ptr<const DexFile> java_lang_dex_file_; scoped_ptr<Runtime> runtime_; ClassLinker* class_linker_; }; |