diff options
author | Francis Ricci <francisjricci@gmail.com> | 2017-03-02 00:12:56 +0000 |
---|---|---|
committer | Francis Ricci <francisjricci@gmail.com> | 2017-03-02 00:12:56 +0000 |
commit | ddee63ffb209fcd02107d5f7ec1a2e25ab396822 (patch) | |
tree | 30ae47f50e1f0cb69ac3ca30483b474599c517c1 | |
parent | 933863ce61f65749b5954e38b9881ff1a3d3c0ee (diff) | |
download | bcm5719-llvm-ddee63ffb209fcd02107d5f7ec1a2e25ab396822.tar.gz bcm5719-llvm-ddee63ffb209fcd02107d5f7ec1a2e25ab396822.zip |
Revert "Increase stack size for stack-use-after-return test"
Reverting due to failures on aarch64
This reverts commit f8ff7e585134196e8482e4dd8752cd4c22cf027a.
llvm-svn: 296719
-rw-r--r-- | compiler-rt/test/asan/TestCases/Posix/stack-use-after-return.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/asan/TestCases/Posix/stack-use-after-return.cc b/compiler-rt/test/asan/TestCases/Posix/stack-use-after-return.cc index af92e83c9f9..cf114be97d5 100644 --- a/compiler-rt/test/asan/TestCases/Posix/stack-use-after-return.cc +++ b/compiler-rt/test/asan/TestCases/Posix/stack-use-after-return.cc @@ -4,7 +4,7 @@ // RUN: %clangxx_asan -O3 %s -pthread -o %t && %env_asan_opts=detect_stack_use_after_return=1 not %run %t 2>&1 | FileCheck %s // RUN: %env_asan_opts=detect_stack_use_after_return=0 %run %t // Regression test for a CHECK failure with small stack size and large frame. -// RUN: %clangxx_asan -O3 %s -pthread -o %t -DkSize=10000 -DUseThread -DkStackSize=131072 && %env_asan_opts=detect_stack_use_after_return=1 not %run %t 2>&1 | FileCheck --check-prefix=THREAD %s +// RUN: %clangxx_asan -O3 %s -pthread -o %t -DkSize=10000 -DUseThread -DkStackSize=65536 && %env_asan_opts=detect_stack_use_after_return=1 not %run %t 2>&1 | FileCheck --check-prefix=THREAD %s // // Test that we can find UAR in a thread other than main: // RUN: %clangxx_asan -DUseThread -O2 %s -pthread -o %t && %env_asan_opts=detect_stack_use_after_return=1 not %run %t 2>&1 | FileCheck --check-prefix=THREAD %s |