diff options
| author | 2016-04-07 16:13:10 +0000 | |
|---|---|---|
| committer | 2016-04-07 16:13:10 +0000 | |
| commit | 7fa1f92cbf98c40baa00c6fb9331ec7ac72abfa8 (patch) | |
| tree | 1c913694558dabe227a8ec124a5235c65a89fa00 /compiler/common_compiler_test.h | |
| parent | 8913162a5959035f100f608fd5ccc348cf3922cf (diff) | |
| parent | 8b233fc3c50e3c1785b445582502ecb9a7e983eb (diff) | |
Merge "Remove more Quick-related macros in tests."
Diffstat (limited to 'compiler/common_compiler_test.h')
| -rw-r--r-- | compiler/common_compiler_test.h | 21 | 
1 files changed, 0 insertions, 21 deletions
diff --git a/compiler/common_compiler_test.h b/compiler/common_compiler_test.h index 7c2c844e6f..2d139eb841 100644 --- a/compiler/common_compiler_test.h +++ b/compiler/common_compiler_test.h @@ -115,13 +115,6 @@ class CommonCompilerTest : public CommonRuntimeTest {    std::list<std::vector<uint8_t>> header_code_and_maps_chunks_;  }; -// TODO: When heap reference poisoning works with all compilers in use, get rid of this. -#define TEST_DISABLED_FOR_HEAP_REFERENCE_POISONING_WITH_QUICK() \ -  if (kPoisonHeapReferences && GetCompilerKind() == Compiler::kQuick) { \ -    printf("WARNING: TEST DISABLED FOR HEAP REFERENCE POISONING WITH QUICK\n"); \ -    return; \ -  } -  // TODO: When read barrier works with all tests, get rid of this.  #define TEST_DISABLED_FOR_READ_BARRIER() \    if (kUseReadBarrier) { \ @@ -129,13 +122,6 @@ class CommonCompilerTest : public CommonRuntimeTest {      return; \    } -// TODO: When read barrier works with all compilers in use, get rid of this. -#define TEST_DISABLED_FOR_READ_BARRIER_WITH_QUICK() \ -  if (kUseReadBarrier && GetCompilerKind() == Compiler::kQuick) { \ -    printf("WARNING: TEST DISABLED FOR READ BARRIER WITH QUICK\n"); \ -    return; \ -  } -  // TODO: When read barrier works with all Optimizing back ends, get rid of this.  #define TEST_DISABLED_FOR_READ_BARRIER_WITH_OPTIMIZING_FOR_UNSUPPORTED_INSTRUCTION_SETS() \    if (kUseReadBarrier && GetCompilerKind() == Compiler::kOptimizing) {                    \ @@ -155,13 +141,6 @@ class CommonCompilerTest : public CommonRuntimeTest {      }                                                                                     \    } -// TODO: When non-PIC works with all compilers in use, get rid of this. -#define TEST_DISABLED_FOR_NON_PIC_COMPILING_WITH_OPTIMIZING() \ -  if (GetCompilerKind() == Compiler::kOptimizing) { \ -    printf("WARNING: TEST DISABLED FOR NON-PIC COMPILING WITH OPTIMIZING\n"); \ -    return; \ -  } -  }  // namespace art  #endif  // ART_COMPILER_COMMON_COMPILER_TEST_H_  |