[asan] remove one test from SizedStackTest which relied on a now-wrong assumption that the left stack redzone is >= 32 bytes (PR18195)

llvm-svn: 196900
This commit is contained in:
Kostya Serebryany 2013-12-10 09:49:31 +00:00
parent 0bf1381902
commit b2eb3d3177
1 changed files with 0 additions and 2 deletions

View File

@ -454,8 +454,6 @@ NOINLINE void SizedStackTest() {
A[i] = i;
EXPECT_DEATH(A[-1] = 0, expected_death);
EXPECT_DEATH(A[-5] = 0, expected_death);
if (kSize > 16 && SANITIZER_WORDSIZE == 64)
EXPECT_DEATH(A[-31] = 0, expected_death);
EXPECT_DEATH(A[kSize] = 0, expected_death);
EXPECT_DEATH(A[kSize + 1] = 0, expected_death);
EXPECT_DEATH(A[kSize + 5] = 0, expected_death);