Merge "allow rpm to custom systemd installation" into tizen
[platform/upstream/rpm.git] / scripts / rpm.supp
1 # This is a valgrind suppression file for rpm.
2 # Rpm now processes /proc/self/auxv on Linux, but valgrind does not
3 # like that (see https://bugs.kde.org/show_bug.cgi?id=253519). To
4 # avoid the related false positives from valgrind, use this with
5 # 'valgrind --suppressions=rpm.supp [...]' when using it on rpm.
6
7 {
8    defaultMachine_strdup
9    Memcheck:Addr1
10    ...
11    fun:strdup
12    ...
13    fun:defaultMachine
14 }
15
16 {
17    defaultMachine_memcpy1
18    Memcheck:Addr1
19    fun:*memcpy
20    ...
21    fun:defaultMachine
22 }
23
24 {
25    defaultMachine_memcpy2
26    Memcheck:Addr2
27    fun:*memcpy
28    ...
29    fun:defaultMachine
30 }
31
32 {
33    defaultMachine_memcpy4
34    Memcheck:Addr4
35    fun:*memcpy
36    ...
37    fun:defaultMachine
38 }