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/global-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/global-overflow.cc')
-rw-r--r-- | compiler-rt/lib/asan/lit_tests/TestCases/global-overflow.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler-rt/lib/asan/lit_tests/TestCases/global-overflow.cc b/compiler-rt/lib/asan/lit_tests/TestCases/global-overflow.cc index e5723355156..5b75efaf65b 100644 --- a/compiler-rt/lib/asan/lit_tests/TestCases/global-overflow.cc +++ b/compiler-rt/lib/asan/lit_tests/TestCases/global-overflow.cc @@ -1,7 +1,7 @@ -// RUN: %clangxx_asan -O0 %s -o %t && %t 2>&1 | %symbolize | FileCheck %s -// RUN: %clangxx_asan -O1 %s -o %t && %t 2>&1 | %symbolize | FileCheck %s -// RUN: %clangxx_asan -O2 %s -o %t && %t 2>&1 | %symbolize | FileCheck %s -// RUN: %clangxx_asan -O3 %s -o %t && %t 2>&1 | %symbolize | FileCheck %s +// RUN: %clangxx_asan -O0 %s -o %t && %t 2>&1 | FileCheck %s +// RUN: %clangxx_asan -O1 %s -o %t && %t 2>&1 | FileCheck %s +// RUN: %clangxx_asan -O2 %s -o %t && %t 2>&1 | FileCheck %s +// RUN: %clangxx_asan -O3 %s -o %t && %t 2>&1 | FileCheck %s #include <string.h> int main(int argc, char **argv) { |