diff options
author | Alexey Samsonov <vonosmas@gmail.com> | 2015-02-10 01:55:02 +0000 |
---|---|---|
committer | Alexey Samsonov <vonosmas@gmail.com> | 2015-02-10 01:55:02 +0000 |
commit | e977a8c747b79affdc5870f7e7c476c33800559b (patch) | |
tree | 839c2335f280a44426afef637e15cd7a21f09a05 | |
parent | 54a0e40442a9c9cbb696097e9dc29ed9b5d8b7f8 (diff) | |
download | bcm5719-llvm-e977a8c747b79affdc5870f7e7c476c33800559b.tar.gz bcm5719-llvm-e977a8c747b79affdc5870f7e7c476c33800559b.zip |
[ASan] Add missing RUN: prefix.
llvm-svn: 228651
-rw-r--r-- | compiler-rt/test/asan/TestCases/deep_call_stack.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/test/asan/TestCases/deep_call_stack.cc b/compiler-rt/test/asan/TestCases/deep_call_stack.cc index 789f23454d1..a5b846e3eb7 100644 --- a/compiler-rt/test/asan/TestCases/deep_call_stack.cc +++ b/compiler-rt/test/asan/TestCases/deep_call_stack.cc @@ -1,7 +1,8 @@ // Check that UAR mode can handle very deep recusrion. -// export ASAN_OPTIONS=detect_stack_use_after_return=1 +// RUN: export ASAN_OPTIONS=detect_stack_use_after_return=1 // RUN: %clangxx_asan -O2 %s -o %t && \ // RUN: (ulimit -s 4096; %run %t) 2>&1 | FileCheck %s + // Also check that use_sigaltstack+verbosity doesn't crash. // RUN: env ASAN_OPTIONS=verbosity=1:use_sigaltstack=1 %run %t | FileCheck %s #include <stdio.h> |