Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ART_RUNTIME_COMMON_RUNTIME_TEST_H_ |
| 18 | #define ART_RUNTIME_COMMON_RUNTIME_TEST_H_ |
| 19 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 20 | #include <gtest/gtest.h> |
| 21 | #include <jni.h> |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 22 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 23 | #include <string> |
| 24 | |
David Srbecky | 3e52aa4 | 2015-04-12 07:45:18 +0100 | [diff] [blame] | 25 | #include "arch/instruction_set.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 26 | #include "base/mutex.h" |
| 27 | #include "globals.h" |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 28 | // TODO: Add inl file and avoid including inl. |
| 29 | #include "obj_ptr-inl.h" |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 30 | #include "os.h" |
Calin Juravle | c79470d | 2017-07-12 17:37:42 -0700 | [diff] [blame] | 31 | #include "scoped_thread_state_change-inl.h" |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 32 | |
| 33 | namespace art { |
| 34 | |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 35 | // OBJ pointer helpers to avoid needing .Decode everywhere. |
Mathieu Chartier | 1cc62e4 | 2016-10-03 18:01:28 -0700 | [diff] [blame] | 36 | #define EXPECT_OBJ_PTR_EQ(a, b) EXPECT_EQ(MakeObjPtr(a).Ptr(), MakeObjPtr(b).Ptr()); |
| 37 | #define ASSERT_OBJ_PTR_EQ(a, b) ASSERT_EQ(MakeObjPtr(a).Ptr(), MakeObjPtr(b).Ptr()); |
| 38 | #define EXPECT_OBJ_PTR_NE(a, b) EXPECT_NE(MakeObjPtr(a).Ptr(), MakeObjPtr(b).Ptr()); |
| 39 | #define ASSERT_OBJ_PTR_NE(a, b) ASSERT_NE(MakeObjPtr(a).Ptr(), MakeObjPtr(b).Ptr()); |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 40 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 41 | class ClassLinker; |
| 42 | class CompilerCallbacks; |
| 43 | class DexFile; |
| 44 | class JavaVMExt; |
| 45 | class Runtime; |
| 46 | typedef std::vector<std::pair<std::string, const void*>> RuntimeOptions; |
Andreas Gampe | 26761f7 | 2017-07-20 18:00:39 -0700 | [diff] [blame] | 47 | class Thread; |
| 48 | class VariableSizedHandleScope; |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 49 | |
Alex Light | a01b524 | 2017-03-27 10:15:27 -0700 | [diff] [blame] | 50 | uint8_t* DecodeBase64(const char* src, size_t* dst_size); |
| 51 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 52 | class ScratchFile { |
| 53 | public: |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 54 | ScratchFile(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 55 | |
Mathieu Chartier | 866d874 | 2016-09-21 15:24:18 -0700 | [diff] [blame] | 56 | explicit ScratchFile(const std::string& filename); |
| 57 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 58 | ScratchFile(const ScratchFile& other, const char* suffix); |
Nicolas Geoffray | 9583fbc | 2014-02-28 15:21:07 +0000 | [diff] [blame] | 59 | |
Andreas Gampe | 0afd1be | 2016-11-03 17:24:45 -0700 | [diff] [blame] | 60 | ScratchFile(ScratchFile&& other); |
Mathieu Chartier | 866d874 | 2016-09-21 15:24:18 -0700 | [diff] [blame] | 61 | |
| 62 | ScratchFile& operator=(ScratchFile&& other); |
| 63 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 64 | explicit ScratchFile(File* file); |
Brian Carlstrom | 0e12bdc | 2014-05-14 17:44:28 -0700 | [diff] [blame] | 65 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 66 | ~ScratchFile(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 67 | |
| 68 | const std::string& GetFilename() const { |
| 69 | return filename_; |
| 70 | } |
| 71 | |
| 72 | File* GetFile() const { |
| 73 | return file_.get(); |
| 74 | } |
| 75 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 76 | int GetFd() const; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 77 | |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 78 | void Close(); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 79 | void Unlink(); |
Brian Carlstrom | 0e12bdc | 2014-05-14 17:44:28 -0700 | [diff] [blame] | 80 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 81 | private: |
| 82 | std::string filename_; |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 83 | std::unique_ptr<File> file_; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 84 | }; |
| 85 | |
Mathieu Chartier | 91c9116 | 2016-01-15 09:48:15 -0800 | [diff] [blame] | 86 | class CommonRuntimeTestImpl { |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 87 | public: |
Mathieu Chartier | 91c9116 | 2016-01-15 09:48:15 -0800 | [diff] [blame] | 88 | CommonRuntimeTestImpl(); |
| 89 | virtual ~CommonRuntimeTestImpl(); |
Andreas Gampe | 7747c8d | 2014-08-06 14:53:03 -0700 | [diff] [blame] | 90 | static void SetUpAndroidRoot(); |
| 91 | |
| 92 | // Note: setting up ANDROID_DATA may create a temporary directory. If this is used in a |
| 93 | // non-derived class, be sure to also call the corresponding tear-down below. |
| 94 | static void SetUpAndroidData(std::string& android_data); |
| 95 | |
| 96 | static void TearDownAndroidData(const std::string& android_data, bool fail_on_error); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 97 | |
Narayan Kamath | d1ef436 | 2015-11-12 11:49:06 +0000 | [diff] [blame] | 98 | // Gets the paths of the libcore dex files. |
| 99 | static std::vector<std::string> GetLibCoreDexFileNames(); |
Igor Murashkin | aaebaa0 | 2015-01-26 10:55:53 -0800 | [diff] [blame] | 100 | |
David Srbecky | 3e52aa4 | 2015-04-12 07:45:18 +0100 | [diff] [blame] | 101 | // Returns bin directory which contains host's prebuild tools. |
| 102 | static std::string GetAndroidHostToolsDir(); |
| 103 | |
Mathieu Chartier | d00e02b | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 104 | // Returns bin directory which contains target's prebuild tools. |
David Srbecky | 3e52aa4 | 2015-04-12 07:45:18 +0100 | [diff] [blame] | 105 | static std::string GetAndroidTargetToolsDir(InstructionSet isa); |
| 106 | |
Mathieu Chartier | d00e02b | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 107 | // Retuerns the filename for a test dex (i.e. XandY or ManyMethods). |
| 108 | std::string GetTestDexFileName(const char* name) const; |
| 109 | |
Andreas Gampe | 26761f7 | 2017-07-20 18:00:39 -0700 | [diff] [blame] | 110 | // A helper function to fill the heap. |
| 111 | static void FillHeap(Thread* self, |
| 112 | ClassLinker* class_linker, |
| 113 | VariableSizedHandleScope* handle_scope) |
| 114 | REQUIRES_SHARED(Locks::mutator_lock_); |
| 115 | // A helper to set up a small heap (4M) to make FillHeap faster. |
| 116 | static void SetUpRuntimeOptionsForFillHeap(RuntimeOptions *options); |
| 117 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 118 | protected: |
Mathieu Chartier | 91c9116 | 2016-01-15 09:48:15 -0800 | [diff] [blame] | 119 | // Allow subclases such as CommonCompilerTest to add extra options. |
| 120 | virtual void SetUpRuntimeOptions(RuntimeOptions* options ATTRIBUTE_UNUSED) {} |
| 121 | |
| 122 | // Called before the runtime is created. |
| 123 | virtual void PreRuntimeCreate() {} |
| 124 | |
| 125 | // Called after the runtime is created. |
| 126 | virtual void PostRuntimeCreate() {} |
| 127 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 128 | static bool IsHost() { |
| 129 | return !kIsTargetBuild; |
| 130 | } |
| 131 | |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 132 | // File location to core.art, e.g. $ANDROID_HOST_OUT/system/framework/core.art |
| 133 | static std::string GetCoreArtLocation(); |
| 134 | |
| 135 | // File location to core.oat, e.g. $ANDROID_HOST_OUT/system/framework/core.oat |
| 136 | static std::string GetCoreOatLocation(); |
| 137 | |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 138 | std::unique_ptr<const DexFile> LoadExpectSingleDexFile(const char* location); |
Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 139 | |
Mathieu Chartier | f70fe3d | 2017-06-21 15:24:02 -0700 | [diff] [blame] | 140 | void ClearDirectory(const char* dirpath, bool recursive = true); |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 141 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 142 | std::string GetTestAndroidRoot(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 143 | |
Mathieu Chartier | 496577f | 2016-09-20 15:33:31 -0700 | [diff] [blame] | 144 | std::vector<std::unique_ptr<const DexFile>> OpenTestDexFiles(const char* name); |
Andreas Gampe | 833a485 | 2014-05-21 18:46:59 -0700 | [diff] [blame] | 145 | |
Mathieu Chartier | db40eac | 2017-06-09 18:34:11 -0700 | [diff] [blame] | 146 | std::unique_ptr<const DexFile> OpenTestDexFile(const char* name); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 147 | |
Calin Juravle | 7865ac7 | 2017-06-28 11:03:12 -0700 | [diff] [blame] | 148 | // Loads the test dex file identified by the given dex_name into a PathClassLoader. |
| 149 | // Returns the created class loader. |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 150 | jobject LoadDex(const char* dex_name) REQUIRES_SHARED(Locks::mutator_lock_); |
Calin Juravle | 7865ac7 | 2017-06-28 11:03:12 -0700 | [diff] [blame] | 151 | // Loads the test dex file identified by the given first_dex_name and second_dex_name |
| 152 | // into a PathClassLoader. Returns the created class loader. |
Nicolas Geoffray | d01f60c | 2016-10-28 14:45:48 +0100 | [diff] [blame] | 153 | jobject LoadMultiDex(const char* first_dex_name, const char* second_dex_name) |
| 154 | REQUIRES_SHARED(Locks::mutator_lock_); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 155 | |
Calin Juravle | 7865ac7 | 2017-06-28 11:03:12 -0700 | [diff] [blame] | 156 | jobject LoadDexInPathClassLoader(const std::string& dex_name, jobject parent_loader); |
| 157 | jobject LoadDexInDelegateLastClassLoader(const std::string& dex_name, jobject parent_loader); |
| 158 | jobject LoadDexInWellKnownClassLoader(const std::string& dex_name, |
| 159 | jclass loader_class, |
| 160 | jobject parent_loader); |
| 161 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 162 | std::string android_data_; |
| 163 | std::string dalvik_cache_; |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 164 | |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 165 | std::unique_ptr<Runtime> runtime_; |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 166 | |
| 167 | // The class_linker_, java_lang_dex_file_, and boot_class_path_ are all |
| 168 | // owned by the runtime. |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 169 | ClassLinker* class_linker_; |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 170 | const DexFile* java_lang_dex_file_; |
| 171 | std::vector<const DexFile*> boot_class_path_; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 172 | |
Calin Juravle | c79470d | 2017-07-12 17:37:42 -0700 | [diff] [blame] | 173 | // Get the dex files from a PathClassLoader or DelegateLastClassLoader. |
| 174 | // This only looks into the current class loader and does not recurse into the parents. |
Andreas Gampe | 81c6f8d | 2015-03-25 17:19:53 -0700 | [diff] [blame] | 175 | std::vector<const DexFile*> GetDexFiles(jobject jclass_loader); |
Calin Juravle | c79470d | 2017-07-12 17:37:42 -0700 | [diff] [blame] | 176 | std::vector<const DexFile*> GetDexFiles(ScopedObjectAccess& soa, |
| 177 | Handle<mirror::ClassLoader> class_loader) |
| 178 | REQUIRES_SHARED(Locks::mutator_lock_); |
Andreas Gampe | 81c6f8d | 2015-03-25 17:19:53 -0700 | [diff] [blame] | 179 | |
| 180 | // Get the first dex file from a PathClassLoader. Will abort if it is null. |
| 181 | const DexFile* GetFirstDexFile(jobject jclass_loader); |
| 182 | |
Andreas Gampe | bb9c6b1 | 2015-03-29 13:56:36 -0700 | [diff] [blame] | 183 | std::unique_ptr<CompilerCallbacks> callbacks_; |
| 184 | |
Przemyslaw Szczepaniak | a794c26 | 2016-07-25 17:31:06 +0100 | [diff] [blame] | 185 | virtual void SetUp(); |
Mathieu Chartier | 91c9116 | 2016-01-15 09:48:15 -0800 | [diff] [blame] | 186 | |
Przemyslaw Szczepaniak | a794c26 | 2016-07-25 17:31:06 +0100 | [diff] [blame] | 187 | virtual void TearDown(); |
Mathieu Chartier | 91c9116 | 2016-01-15 09:48:15 -0800 | [diff] [blame] | 188 | |
Przemyslaw Szczepaniak | a794c26 | 2016-07-25 17:31:06 +0100 | [diff] [blame] | 189 | // Called to finish up runtime creation and filling test fields. By default runs root |
| 190 | // initializers, initialize well-known classes, and creates the heap thread pool. |
| 191 | virtual void FinalizeSetup(); |
Mathieu Chartier | 91c9116 | 2016-01-15 09:48:15 -0800 | [diff] [blame] | 192 | |
Calin Juravle | c79470d | 2017-07-12 17:37:42 -0700 | [diff] [blame] | 193 | // Creates the class path string for the given dex files (the list of dex file locations |
| 194 | // separated by ':'). |
| 195 | std::string CreateClassPath( |
| 196 | const std::vector<std::unique_ptr<const DexFile>>& dex_files); |
| 197 | // Same as CreateClassPath but add the dex file checksum after each location. The separator |
| 198 | // is '*'. |
| 199 | std::string CreateClassPathWithChecksums( |
| 200 | const std::vector<std::unique_ptr<const DexFile>>& dex_files); |
| 201 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 202 | private: |
Igor Murashkin | 3774335 | 2014-11-13 14:38:00 -0800 | [diff] [blame] | 203 | static std::string GetCoreFileLocation(const char* suffix); |
| 204 | |
Richard Uhler | fbef44d | 2014-12-23 09:48:51 -0800 | [diff] [blame] | 205 | std::vector<std::unique_ptr<const DexFile>> loaded_dex_files_; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 206 | }; |
| 207 | |
Mathieu Chartier | 91c9116 | 2016-01-15 09:48:15 -0800 | [diff] [blame] | 208 | template <typename TestType> |
| 209 | class CommonRuntimeTestBase : public TestType, public CommonRuntimeTestImpl { |
| 210 | public: |
| 211 | CommonRuntimeTestBase() {} |
| 212 | virtual ~CommonRuntimeTestBase() {} |
| 213 | |
| 214 | protected: |
Przemyslaw Szczepaniak | a794c26 | 2016-07-25 17:31:06 +0100 | [diff] [blame] | 215 | virtual void SetUp() OVERRIDE { |
Mathieu Chartier | 91c9116 | 2016-01-15 09:48:15 -0800 | [diff] [blame] | 216 | CommonRuntimeTestImpl::SetUp(); |
| 217 | } |
| 218 | |
Przemyslaw Szczepaniak | a794c26 | 2016-07-25 17:31:06 +0100 | [diff] [blame] | 219 | virtual void TearDown() OVERRIDE { |
Mathieu Chartier | 91c9116 | 2016-01-15 09:48:15 -0800 | [diff] [blame] | 220 | CommonRuntimeTestImpl::TearDown(); |
| 221 | } |
Mathieu Chartier | 91c9116 | 2016-01-15 09:48:15 -0800 | [diff] [blame] | 222 | }; |
| 223 | |
| 224 | using CommonRuntimeTest = CommonRuntimeTestBase<testing::Test>; |
| 225 | |
| 226 | template <typename Param> |
| 227 | using CommonRuntimeTestWithParam = CommonRuntimeTestBase<testing::TestWithParam<Param>>; |
| 228 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 229 | // Sets a CheckJni abort hook to catch failures. Note that this will cause CheckJNI to carry on |
| 230 | // rather than aborting, so be careful! |
| 231 | class CheckJniAbortCatcher { |
| 232 | public: |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 233 | CheckJniAbortCatcher(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 234 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 235 | ~CheckJniAbortCatcher(); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 236 | |
Igor Murashkin | 367f3dd | 2016-09-01 17:00:24 -0700 | [diff] [blame] | 237 | void Check(const std::string& expected_text); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 238 | void Check(const char* expected_text); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 239 | |
| 240 | private: |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 241 | static void Hook(void* data, const std::string& reason); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 242 | |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 243 | JavaVMExt* const vm_; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 244 | std::string actual_; |
| 245 | |
| 246 | DISALLOW_COPY_AND_ASSIGN(CheckJniAbortCatcher); |
| 247 | }; |
| 248 | |
Jeff Hao | 0f7eaeb | 2016-08-31 17:56:13 -0700 | [diff] [blame] | 249 | #define TEST_DISABLED_FOR_TARGET() \ |
| 250 | if (kIsTargetBuild) { \ |
| 251 | printf("WARNING: TEST DISABLED FOR TARGET\n"); \ |
| 252 | return; \ |
| 253 | } |
| 254 | |
Nicolas Geoffray | 54accbc | 2014-08-13 03:40:45 +0100 | [diff] [blame] | 255 | #define TEST_DISABLED_FOR_MIPS() \ |
Douglas Leung | d90957f | 2015-04-30 19:22:49 -0700 | [diff] [blame] | 256 | if (kRuntimeISA == kMips) { \ |
Nicolas Geoffray | 54accbc | 2014-08-13 03:40:45 +0100 | [diff] [blame] | 257 | printf("WARNING: TEST DISABLED FOR MIPS\n"); \ |
| 258 | return; \ |
| 259 | } |
| 260 | |
Roland Levillain | 19772bf | 2017-02-16 11:28:10 +0000 | [diff] [blame] | 261 | #define TEST_DISABLED_FOR_X86() \ |
| 262 | if (kRuntimeISA == kX86) { \ |
| 263 | printf("WARNING: TEST DISABLED FOR X86\n"); \ |
Vladimir Marko | 57070da | 2017-02-14 16:16:30 +0000 | [diff] [blame] | 264 | return; \ |
| 265 | } |
| 266 | |
jessicahandojo | 3aaa37b | 2016-07-29 14:46:37 -0700 | [diff] [blame] | 267 | #define TEST_DISABLED_FOR_STRING_COMPRESSION() \ |
| 268 | if (mirror::kUseStringCompression) { \ |
| 269 | printf("WARNING: TEST DISABLED FOR STRING COMPRESSION\n"); \ |
| 270 | return; \ |
| 271 | } |
| 272 | |
Roland Levillain | 6d729a7 | 2017-06-30 18:34:01 +0100 | [diff] [blame] | 273 | #define TEST_DISABLED_WITHOUT_BAKER_READ_BARRIERS() \ |
| 274 | if (!kEmitCompilerReadBarrier || !kUseBakerReadBarrier) { \ |
| 275 | printf("WARNING: TEST DISABLED FOR GC WITHOUT BAKER READ BARRIER\n"); \ |
| 276 | return; \ |
| 277 | } |
| 278 | |
Roland Levillain | 04147ef | 2016-09-06 11:09:41 +0100 | [diff] [blame] | 279 | #define TEST_DISABLED_FOR_NON_STATIC_HOST_BUILDS() \ |
| 280 | if (!kHostStaticBuildEnabled) { \ |
| 281 | printf("WARNING: TEST DISABLED FOR NON-STATIC HOST BUILDS\n"); \ |
| 282 | return; \ |
| 283 | } |
| 284 | |
Mathieu Chartier | 68dda8f | 2017-04-24 10:06:15 -0700 | [diff] [blame] | 285 | #define TEST_DISABLED_FOR_MEMORY_TOOL() \ |
| 286 | if (RUNNING_ON_MEMORY_TOOL > 0) { \ |
| 287 | printf("WARNING: TEST DISABLED FOR MEMORY TOOL\n"); \ |
| 288 | return; \ |
| 289 | } |
| 290 | |
Roland Levillain | 68db225 | 2017-08-14 12:48:47 +0100 | [diff] [blame] | 291 | #define TEST_DISABLED_FOR_MEMORY_TOOL_VALGRIND() \ |
| 292 | if (RUNNING_ON_MEMORY_TOOL > 0 && kMemoryToolIsValgrind) { \ |
| 293 | printf("WARNING: TEST DISABLED FOR MEMORY TOOL VALGRIND\n"); \ |
| 294 | return; \ |
| 295 | } |
| 296 | |
Andreas Gampe | f4a67fd | 2017-05-04 09:55:36 -0700 | [diff] [blame] | 297 | #define TEST_DISABLED_FOR_MEMORY_TOOL_ASAN() \ |
| 298 | if (RUNNING_ON_MEMORY_TOOL > 0 && !kMemoryToolIsValgrind) { \ |
| 299 | printf("WARNING: TEST DISABLED FOR MEMORY TOOL ASAN\n"); \ |
| 300 | return; \ |
| 301 | } |
| 302 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 303 | } // namespace art |
| 304 | |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 305 | #endif // ART_RUNTIME_COMMON_RUNTIME_TEST_H_ |