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