From b036778bdbeef244ebbad2bcd9f145c823f17d8d Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Tue, 18 Feb 2014 13:11:40 +0000 Subject: [PATCH] [asan] Relax stack-overflow test. llvm-svn: 201571 --- compiler-rt/test/asan/TestCases/stack-overflow.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/asan/TestCases/stack-overflow.cc b/compiler-rt/test/asan/TestCases/stack-overflow.cc index 46f76ea24cfc..94f4bbcdf4ae 100644 --- a/compiler-rt/test/asan/TestCases/stack-overflow.cc +++ b/compiler-rt/test/asan/TestCases/stack-overflow.cc @@ -22,7 +22,7 @@ void large_frame_func(char *p, int level) { large_frame_func(buf, level + 1); // CHECK: {{stack-overflow on address 0x.* \(pc 0x.* sp 0x.* bp 0x.* T.*\)}} // Frame 0 may be anywhere (in rand(), for example). - // CHECK: {{ #1 0x.* in large_frame_func.*stack-overflow.cc:}}[[@LINE-3]] + // CHECK: {{ #. 0x.* in large_frame_func.*stack-overflow.cc:}}[[@LINE-3]] } void *ThreadFn(void* unused) {