chore(memcheck): add another memcheck.supp entry for tcmalloc bug

suppress a valgrind warning we had on "normalizer" testcase (only with g++-4.8.1)
This commit is contained in:
Soonho Kong 2013-09-26 00:49:43 -07:00
parent a2a5a77a44
commit bc31322a78

View file

@ -78,7 +78,7 @@
{
# This entry suppresses the warning caused by a bug in tcmalloc
TCMalloc_Bug
TCMalloc_Bug1
Memcheck:Param
msync(start)
fun:__msync_nocancel
@ -95,3 +95,24 @@
fun:malloc
...
}
{
# This entry suppresses the warning caused by a bug in tcmalloc
TCMalloc_Bug2
Memcheck:Param
msync(start)
obj:*/libpthread-2.15.*
obj:*/libunwind.so.*
...
fun:_UL*_step
fun:*GetStackTrace*
fun:*PageHeap*GrowHeap*
fun:*PageHeap*New*
fun:*CentralFreeList*Populate*
fun:*CentralFreeList*FetchFromSpansSafe*
fun:*CentralFreeList*RemoveRange*
fun:*ThreadCache*FetchFromCentralCache*
fun:malloc
...
}