suppress valgrind warnings for old libc.

The warning is in __strcpy_chk, but I don't want to suppress a useful warnings in recent libcs,
and there is no way to specify both a function and object in a suppression, so I
suppressed all warnings from libc-2.5 when called from mbox/message.c

git-svn: trunk@4295
0.95
Török Edvin 17 years ago
parent a11bc7f397
commit 02157f0821
  1. 8
      ChangeLog
  2. 18
      unit_tests/valgrind.supp

@ -1,3 +1,11 @@
Mon Oct 27 18:07:08 EET 2008 (edwin)
------------------------------------
* unit_tests/valgrind.supp: suppress valgrind warnings for old libc.
The warning is in __strcpy_chk, but I don't want to suppress a
useful warnings in recent libcs, and there is no way to specify both
a function and object in a suppression, so I suppressed all warnings
from libc-2.5 when called from mbox/message.c
Mon Oct 27 16:20:02 EET 2008 (edwin)
------------------------------------
* unit_tests/duma_tests.sh: fix typo in test script

@ -191,6 +191,24 @@
Helgrind:Race
fun:__free_tcb
}
{
glibc-2.5-strcpy_chk
Memcheck:Addr8
obj:/lib64/libc-2.5.so
fun:decodeLine
}
{
glibc-2.5-strcpy_chk
Memcheck:Cond
obj:/lib64/libc-2.5.so
fun:decodeLine
}
{
glibc-2.5-strcpy_chk
Memcheck:Cond
obj:/lib64/libc-2.5.so
fun:cli_mbox
}
#{
# helgrind-glibc27-dbg18
# Helgrind:Race

Loading…
Cancel
Save