diff options
Diffstat (limited to 'compiler-rt/lib/asan/lit_tests/TestCases/use-after-free-right.cc')
-rw-r--r-- | compiler-rt/lib/asan/lit_tests/TestCases/use-after-free-right.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler-rt/lib/asan/lit_tests/TestCases/use-after-free-right.cc b/compiler-rt/lib/asan/lit_tests/TestCases/use-after-free-right.cc index 58c5e080b05..37132a62298 100644 --- a/compiler-rt/lib/asan/lit_tests/TestCases/use-after-free-right.cc +++ b/compiler-rt/lib/asan/lit_tests/TestCases/use-after-free-right.cc @@ -1,10 +1,10 @@ -// RUN: %clangxx_asan -O0 %s -o %t && %t 2>&1 | %symbolize > %t.out +// RUN: %clangxx_asan -O0 %s -o %t && not %t 2>%t.out // RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out -// RUN: %clangxx_asan -O1 %s -o %t && %t 2>&1 | %symbolize > %t.out +// RUN: %clangxx_asan -O1 %s -o %t && not %t 2>%t.out // RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out -// RUN: %clangxx_asan -O2 %s -o %t && %t 2>&1 | %symbolize > %t.out +// RUN: %clangxx_asan -O2 %s -o %t && not %t 2>%t.out // RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out -// RUN: %clangxx_asan -O3 %s -o %t && %t 2>&1 | %symbolize > %t.out +// RUN: %clangxx_asan -O3 %s -o %t && not %t 2>%t.out // RUN: FileCheck %s < %t.out && FileCheck %s --check-prefix=CHECK-%os < %t.out // Test use-after-free report in the case when access is at the right border of |