Re: [PATCH] asan: Don't check frame numbers in the testsuite

2016-04-28 Thread Segher Boessenkool
On Thu, Apr 28, 2016 at 06:03:38PM +0200, Jakub Jelinek wrote: > On Thu, Apr 28, 2016 at 03:57:38PM +, Segher Boessenkool wrote: > > On various PowerPC configurations, the top frame is often mentioned > > twice in the backtrace, making many asan tests fail. I see no particular > > reason the a

Re: [PATCH] asan: Don't check frame numbers in the testsuite

2016-04-28 Thread Jeff Law
On 04/28/2016 09:57 AM, Segher Boessenkool wrote: On various PowerPC configurations, the top frame is often mentioned twice in the backtrace, making many asan tests fail. I see no particular reason the asan tests want to check the frame number, so this patch makes it check for " #. " instead of

Re: [PATCH] asan: Don't check frame numbers in the testsuite

2016-04-28 Thread Yury Gribov
On 04/28/2016 06:57 PM, Segher Boessenkool wrote: On various PowerPC configurations, the top frame is often mentioned twice in the backtrace, making many asan tests fail. I see no particular reason the asan tests want to check the frame number, so this patch makes it check for " #. " instead of

Re: [PATCH] asan: Don't check frame numbers in the testsuite

2016-04-28 Thread Jakub Jelinek
On Thu, Apr 28, 2016 at 03:57:38PM +, Segher Boessenkool wrote: > On various PowerPC configurations, the top frame is often mentioned > twice in the backtrace, making many asan tests fail. I see no particular > reason the asan tests want to check the frame number, so this patch > makes it chec

[PATCH] asan: Don't check frame numbers in the testsuite

2016-04-28 Thread Segher Boessenkool
On various PowerPC configurations, the top frame is often mentioned twice in the backtrace, making many asan tests fail. I see no particular reason the asan tests want to check the frame number, so this patch makes it check for " #. " instead of " #1 ", etc., in all of the c-c++-common/asan tests.