diff options
Diffstat (limited to 'compiler-rt/lib/asan/lit_tests/TestCases/stack-oob-frames.cc')
-rw-r--r-- | compiler-rt/lib/asan/lit_tests/TestCases/stack-oob-frames.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler-rt/lib/asan/lit_tests/TestCases/stack-oob-frames.cc b/compiler-rt/lib/asan/lit_tests/TestCases/stack-oob-frames.cc index a4acd592af7..dc2615c2c9c 100644 --- a/compiler-rt/lib/asan/lit_tests/TestCases/stack-oob-frames.cc +++ b/compiler-rt/lib/asan/lit_tests/TestCases/stack-oob-frames.cc @@ -1,8 +1,8 @@ // RUN: %clangxx_asan -O1 %s -o %t -// RUN: %t 0 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK0 -// RUN: %t 1 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK1 -// RUN: %t 2 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK2 -// RUN: %t 3 2>&1 | %symbolize | FileCheck %s --check-prefix=CHECK3 +// RUN: %t 0 2>&1 | FileCheck %s --check-prefix=CHECK0 +// RUN: %t 1 2>&1 | FileCheck %s --check-prefix=CHECK1 +// RUN: %t 2 2>&1 | FileCheck %s --check-prefix=CHECK2 +// RUN: %t 3 2>&1 | FileCheck %s --check-prefix=CHECK3 #define NOINLINE __attribute__((noinline)) inline void break_optimization(void *arg) { |