diff options
| author | Kuba Mracek <mracek@apple.com> | 2017-03-20 16:36:34 +0000 |
|---|---|---|
| committer | Kuba Mracek <mracek@apple.com> | 2017-03-20 16:36:34 +0000 |
| commit | 5971469566b3b52201857a17491c1ca1375257e9 (patch) | |
| tree | fcae5255bd4681635f7338d22829d9633d736979 | |
| parent | 820a833125df70771f8f33a0bad3909e03458d12 (diff) | |
| download | bcm5719-llvm-5971469566b3b52201857a17491c1ca1375257e9.tar.gz bcm5719-llvm-5971469566b3b52201857a17491c1ca1375257e9.zip | |
Disable stack-use-after-return.cc on AArch64. The test was not testing the right thing before (the call to pthread_attr_setstacksize wasn't doing anything) anyway, and now it's running out of stack due to an unrelated change.
llvm-svn: 298267
| -rw-r--r-- | compiler-rt/test/asan/TestCases/Posix/stack-use-after-return.cc | 3 |
1 files changed, 3 insertions, 0 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 c8bebfc2509..232f93f8921 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 @@ -14,6 +14,9 @@ // RUN: %env_asan_opts=detect_stack_use_after_return=1:max_uar_stack_size_log=20:verbosity=1 not %run %t 2>&1 | FileCheck --check-prefix=CHECK-20 %s // RUN: %env_asan_opts=detect_stack_use_after_return=1:min_uar_stack_size_log=24:max_uar_stack_size_log=24:verbosity=1 not %run %t 2>&1 | FileCheck --check-prefix=CHECK-24 %s +// This test runs out of stack on AArch64. +// UNSUPPORTED: aarch64 + #include <limits.h> #include <pthread.h> #include <stdio.h> |

