diff options
author | Roland Levillain <rpl@google.com> | 2016-04-06 18:23:01 +0100 |
---|---|---|
committer | Roland Levillain <rpl@google.com> | 2016-04-07 16:26:27 +0100 |
commit | 8b233fc3c50e3c1785b445582502ecb9a7e983eb (patch) | |
tree | 474099c4d0521749d3594015adb1d0e8110e29ce /compiler/common_compiler_test.h | |
parent | 950dd553041b324e9e343a60d94d45596b5c7926 (diff) |
Remove more Quick-related macros in tests.
Remove these macros, as Quick is gone:
- TEST_DISABLED_FOR_HEAP_REFERENCE_POISONING_WITH_QUICK
- TEST_DISABLED_FOR_READ_BARRIER_WITH_QUICK
Also remove TEST_DISABLED_FOR_NON_PIC_COMPILING_WITH_OPTIMIZING,
as it is no longer used anywhere.
Change-Id: I78617fc060b7727f9b6fffcb2348d6fca01b4928
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_ |