Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: tests/valgrind.supp

Issue 266473010: Add Valgrind suppressions for nvidia driver. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Pass this file to Valgrind with "--suppressions=tests/valgrind.supp" 1 # Pass this file to Valgrind with "--suppressions=tests/valgrind.supp"
2 2
3 { 3 {
4 FcConfig 4 FcConfig
5 Memcheck:Addr4 5 Memcheck:Addr4
6 fun:FcConfigFileExists 6 fun:FcConfigFileExists
7 } 7 }
8 { 8 {
9 FcFontSetCreate_Leak 9 FcFontSetCreate_Leak
10 Memcheck:Leak 10 Memcheck:Leak
(...skipping 20 matching lines...) Expand all
31 fun:_Znwm 31 fun:_Znwm
32 fun:_ZN16SkRTConfRegistry12registerConfEP12SkRTConfBase 32 fun:_ZN16SkRTConfRegistry12registerConfEP12SkRTConfBase
33 } 33 }
34 { 34 {
35 XML_ParseBuffer_leak 35 XML_ParseBuffer_leak
36 Memcheck:Leak 36 Memcheck:Leak
37 fun:malloc 37 fun:malloc
38 fun:FcPatternObjectInsertElt 38 fun:FcPatternObjectInsertElt
39 fun:FcPatternObjectAddWithBinding 39 fun:FcPatternObjectAddWithBinding
40 } 40 }
41
42 # Blanket nvidia driver suppressions
43 {
44 nvidia_param_write_to_unallocated_buf
45 Memcheck:Param
46 write(buf)
47 obj:/usr/lib/libnvidia-glcore.so*
48 }
49 {
50 nvidia_conditional_jump_on_uninitialized_value
51 Memcheck:Cond
52 obj:/usr/lib/libnvidia-glcore.so*
53 }
54 {
55 nvidia_memory_leaks
56 Memcheck:Leak
57 obj:/usr/lib/libGL.so*
58 }
59
60 # Suppressions for ATI cards
41 { 61 {
42 driver_bug_1 62 driver_bug_1
43 Memcheck:Param 63 Memcheck:Param
44 ioctl(generic) 64 ioctl(generic)
45 fun:ioctl 65 fun:ioctl
46 ... 66 ...
47 obj:/usr/lib/x86_64-linux-gnu/dri/fglrx_dri.so 67 obj:/usr/lib/x86_64-linux-gnu/dri/fglrx_dri.so
48 } 68 }
49 { 69 {
50 driver_bug_2 70 driver_bug_2
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 fun:calloc 113 fun:calloc
94 obj:/usr/lib/x86_64-linux-gnu/dri/fglrx_dri.so 114 obj:/usr/lib/x86_64-linux-gnu/dri/fglrx_dri.so
95 } 115 }
96 { 116 {
97 driver_bug_10 117 driver_bug_10
98 Memcheck:Leak 118 Memcheck:Leak
99 fun:malloc 119 fun:malloc
100 obj:/usr/lib/fglrx/fglrx-libGL.so.1.2 120 obj:/usr/lib/fglrx/fglrx-libGL.so.1.2
101 } 121 }
102 # the gpu_issue_* suppressions suppress issues that cannot be reproduced 122 # the gpu_issue_* suppressions suppress issues that cannot be reproduced
103 # locally. 123 # locally.
104 { 124 {
105 gpu_issue_1 125 gpu_issue_1
106 Memcheck:Addr2 126 Memcheck:Addr2
107 fun:_ZNK5GrGpu18getQuadIndexBufferEv 127 fun:_ZNK5GrGpu18getQuadIndexBufferEv
108 } 128 }
109 { 129 {
110 gpu_issue_2 130 gpu_issue_2
111 Memcheck:Addr2 131 Memcheck:Addr2
112 fun:_ZN24GrAAHairLinePathRenderer6CreateEP9GrContext 132 fun:_ZN24GrAAHairLinePathRenderer6CreateEP9GrContext
113 } 133 }
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 { 191 {
172 gpu_issue_14 192 gpu_issue_14
173 Memcheck:Addr4 193 Memcheck:Addr4
174 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb 194 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb
175 } 195 }
176 { 196 {
177 gpu_issue_15 197 gpu_issue_15
178 Memcheck:Addr2 198 Memcheck:Addr2
179 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb 199 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb
180 } 200 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698