summaryrefslogtreecommitdiff
path: root/lib/asan/tests/asan_oob_test.cc
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2013-04-04 11:32:49 +0000
committerKostya Serebryany <kcc@google.com>2013-04-04 11:32:49 +0000
commitb1971ca4a3057916ca90a733c672a08127d5fe67 (patch)
tree860c329777d41f90df20919390f49e3e5b16a472 /lib/asan/tests/asan_oob_test.cc
parent2a3619ecbb56e828090b4c40ece28550f68c94de (diff)
[asan] nuke the old unused allocator code
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@178758 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan/tests/asan_oob_test.cc')
-rw-r--r--lib/asan/tests/asan_oob_test.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/asan/tests/asan_oob_test.cc b/lib/asan/tests/asan_oob_test.cc
index dbe272c2c..f8343f19c 100644
--- a/lib/asan/tests/asan_oob_test.cc
+++ b/lib/asan/tests/asan_oob_test.cc
@@ -99,7 +99,6 @@ TEST(AddressSanitizer, OOBRightTest) {
}
}
-#if ASAN_ALLOCATOR_VERSION == 2 // Broken with the asan_allocator1
TEST(AddressSanitizer, LargeOOBRightTest) {
size_t large_power_of_two = 1 << 19;
for (size_t i = 16; i <= 256; i *= 2) {
@@ -109,7 +108,6 @@ TEST(AddressSanitizer, LargeOOBRightTest) {
delete [] p;
}
}
-#endif // ASAN_ALLOCATOR_VERSION == 2
TEST(AddressSanitizer, DISABLED_DemoOOBLeftLow) {
oob_test<U1>(10, -1);