diff options
author | Kostya Serebryany <kcc@google.com> | 2013-05-22 11:00:56 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2013-05-22 11:00:56 +0000 |
commit | 15fd53fa39789f4b25adf13a6bfbeb7cfaaf69c4 (patch) | |
tree | 7b9d3667f4872c278dd43f06d974371369fd040b /compiler-rt/lib/asan/lit_tests/stack-overflow.cc | |
parent | b93ae15205ec6484f54df44c916dc0b5924ac30f (diff) | |
download | bcm5719-llvm-15fd53fa39789f4b25adf13a6bfbeb7cfaaf69c4.tar.gz bcm5719-llvm-15fd53fa39789f4b25adf13a6bfbeb7cfaaf69c4.zip |
[asan] enhance stack-overflow.cc test: check that the location frame is properly symbolized
llvm-svn: 182463
Diffstat (limited to 'compiler-rt/lib/asan/lit_tests/stack-overflow.cc')
-rw-r--r-- | compiler-rt/lib/asan/lit_tests/stack-overflow.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/lit_tests/stack-overflow.cc b/compiler-rt/lib/asan/lit_tests/stack-overflow.cc index eb55315eaf1..25ea43af48a 100644 --- a/compiler-rt/lib/asan/lit_tests/stack-overflow.cc +++ b/compiler-rt/lib/asan/lit_tests/stack-overflow.cc @@ -15,6 +15,6 @@ int main(int argc, char **argv) { // CHECK: {{READ of size 1 at 0x.* thread T0}} // CHECK: {{ #0 0x.* in _?main .*stack-overflow.cc:}}[[@LINE-2]] // CHECK: {{Address 0x.* is located in stack of thread T0 at offset}} - // CHECK: main + // CHECK-NEXT: in{{.*}}main{{.*}}stack-overflow.cc return res; } |