diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-06-28 15:52:44 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-06-28 15:52:44 +0000 |
commit | 13f89cd19b5425e2671390ef971f00b51f6bb113 (patch) | |
tree | d24504f217d3fe99cdd95d7d4e50f774e8ee2053 /compiler-rt/lib/asan/lit_tests/TestCases/heap-overflow.cc | |
parent | c026e8bc8e2afaf45cdb44670995afd8953e075c (diff) | |
download | bcm5719-llvm-13f89cd19b5425e2671390ef971f00b51f6bb113.tar.gz bcm5719-llvm-13f89cd19b5425e2671390ef971f00b51f6bb113.zip |
[ASan] Remove %symbolize from lit tests: we now use external symbolizer instead of python script
llvm-svn: 185163
Diffstat (limited to 'compiler-rt/lib/asan/lit_tests/TestCases/heap-overflow.cc')
-rw-r--r-- | compiler-rt/lib/asan/lit_tests/TestCases/heap-overflow.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler-rt/lib/asan/lit_tests/TestCases/heap-overflow.cc b/compiler-rt/lib/asan/lit_tests/TestCases/heap-overflow.cc index 664b2646d77..05aad02c178 100644 --- a/compiler-rt/lib/asan/lit_tests/TestCases/heap-overflow.cc +++ b/compiler-rt/lib/asan/lit_tests/TestCases/heap-overflow.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 #include <stdlib.h> |