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

Side by Side Diff: tools/valgrind.supp

Issue 2347153002: Tweak valgrind suppressions for intentional leaks. (Closed)
Patch Set: Created 4 years, 3 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=tools/valgrind.supp" 1 # Pass this file to Valgrind with "--suppressions=tools/valgrind.supp"
2 2
3 # Intentional thread / memory leak in DM. 3 # Intentional thread / memory leak in DM.
4 { 4 {
5 dm_keepalive_thread_leak 5 dm_keepalive_thread_leak
6 Memcheck:Leak 6 Memcheck:Leak
7 match-leak-kinds: possible 7 match-leak-kinds: possible
8 ... 8 ...
9 fun:_ZN8SkThreadC1EPFvPvES0_ 9 fun:_ZN8SkThreadC1EPFvPvES0_
10 ... 10 ...
11 fun:_Z7dm_mainv 11 fun:_Z7dm_mainv
12 fun:main 12 ...
13 } 13 }
14 14
15 # Intentional thread / memory leak in nanobench. 15 # Intentional thread / memory leak in nanobench.
16 { 16 {
17 nanobench_keepalive_thread_leak 17 nanobench_keepalive_thread_leak
18 Memcheck:Leak 18 Memcheck:Leak
19 match-leak-kinds: possible 19 match-leak-kinds: possible
20 ... 20 ...
21 fun:_ZN8SkThreadC1EPFvPvES0_ 21 fun:_ZN8SkThreadC1EPFvPvES0_
22 ... 22 ...
23 fun:_Z14nanobench_mainv 23 fun:_Z14nanobench_mainv
24 fun:main 24 ...
25 } 25 }
26 26
27 # Third party lib, driver issues. 27 # Third party lib, driver issues.
28 { 28 {
29 ati_driver_bug_1 29 ati_driver_bug_1
30 Memcheck:Param 30 Memcheck:Param
31 ioctl(generic) 31 ioctl(generic)
32 fun:ioctl 32 fun:ioctl
33 ... 33 ...
34 obj:/usr/lib/x86_64-linux-gnu/dri/fglrx_dri.so 34 obj:/usr/lib/x86_64-linux-gnu/dri/fglrx_dri.so
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 Memcheck:Cond 259 Memcheck:Cond
260 fun:_ZL15S32A_D565_BlendPtPKjijii 260 fun:_ZL15S32A_D565_BlendPtPKjijii
261 fun:_ZN26Sprite_D16_S32_BlitRowProc8blitRectEiiii 261 fun:_ZN26Sprite_D16_S32_BlitRowProc8blitRectEiiii
262 } 262 }
263 { 263 {
264 libjpeg_turbo_bug4550_3 264 libjpeg_turbo_bug4550_3
265 Memcheck:Cond 265 Memcheck:Cond
266 fun:_ZN12_GLOBAL__N_120ConvolveHorizontallyILb0EEEvPKhRK21SkConvolutionFilte r1DPh 266 fun:_ZN12_GLOBAL__N_120ConvolveHorizontallyILb0EEEvPKhRK21SkConvolutionFilte r1DPh
267 fun:_Z14BGRAConvolve2DPKhibRK21SkConvolutionFilter1DS3_iPhRK18SkConvolutionP rocsb 267 fun:_Z14BGRAConvolve2DPKhibRK21SkConvolutionFilter1DS3_iPhRK18SkConvolutionP rocsb
268 } 268 }
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