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

Side by Side Diff: tools/valgrind/memcheck/suppressions_mac.txt

Issue 3056032: Revert parts of http://codereview.chromium.org/2808079 as requested by thestig. (Closed)
Patch Set: Created 10 years, 4 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 # There are three kinds of suppressions in this file: 1 # There are three kinds of suppressions in this file:
2 # 1. Third party stuff we have no control over. 2 # 1. Third party stuff we have no control over.
3 # 3 #
4 # 2. Intentional unit test errors, stuff that is somehow a false positive 4 # 2. Intentional unit test errors, stuff that is somehow a false positive
5 # in our own code, or stuff that is so trivial it's not worth fixing. 5 # in our own code, or stuff that is so trivial it's not worth fixing.
6 # 6 #
7 # 3. Suppressions for real chromium bugs that are not yet fixed. 7 # 3. Suppressions for real chromium bugs that are not yet fixed.
8 # These should all be in chromium's bug tracking system. 8 # These should all be in chromium's bug tracking system.
9 # Periodically we should sweep this file and the bug tracker clean by 9 # Periodically we should sweep this file and the bug tracker clean by
10 # running overnight and removing outdated bugs/suppressions. 10 # running overnight and removing outdated bugs/suppressions.
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 fun:_Znw* 214 fun:_Znw*
215 fun:_ZN11sandboxtest8internal19RegisterSandboxTestIN12_GLOBAL__N_* 215 fun:_ZN11sandboxtest8internal19RegisterSandboxTestIN12_GLOBAL__N_*
216 fun:_Z41__static_initialization_and_destruction_0ii 216 fun:_Z41__static_initialization_and_destruction_0ii
217 fun:_GLOBAL__I__ZNSt3tr112_GLOBAL__N_16ignoreE 217 fun:_GLOBAL__I__ZNSt3tr112_GLOBAL__N_16ignoreE
218 fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE 218 fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
219 fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj 219 fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
220 fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE 220 fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
221 fun:_ZN4dyld24initializeMainExecutableEv 221 fun:_ZN4dyld24initializeMainExecutableEv
222 } 222 }
223 { 223 {
224 # With our tweaks to get Chromium to link on Mac 10.5, we sometimes get
225 # this suppression instead.
226 Mac_Sandbox_Intentional_Leak3
227 Memcheck:Leak
228 fun:_Znw*
229 fun:_Z41__static_initialization_and_destruction_0ii
230 fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
231 fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
232 fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
233 fun:_ZN4dyld24initializeMainExecutableEv
234 }
235 {
224 # jrg thinks this is probably a bug in Cocoa but is harmless. We 236 # jrg thinks this is probably a bug in Cocoa but is harmless. We
225 # can hit it by using --homepage=about:blank, which triggers a 237 # can hit it by using --homepage=about:blank, which triggers a
226 # location bar focus earlier than normal (earlier than when a 238 # location bar focus earlier than normal (earlier than when a
227 # window is shown). To "work around" the problem for valgrind, we 239 # window is shown). To "work around" the problem for valgrind, we
228 # could call for example call [NSWindow setInitialFirstResponder:] 240 # could call for example call [NSWindow setInitialFirstResponder:]
229 # instead of [NSWindow makeFirstResponder:] if the window isn't 241 # instead of [NSWindow makeFirstResponder:] if the window isn't
230 # visible. However, these contortions are ugly. since the 242 # visible. However, these contortions are ugly. since the
231 # needsDisplay region gets reset when the window is shown, it 243 # needsDisplay region gets reset when the window is shown, it
232 # really doesn't matter what we do with it before then. 244 # really doesn't matter what we do with it before then.
233 Memcheck:Cond 245 Memcheck:Cond
(...skipping 1309 matching lines...) Expand 10 before | Expand all | Expand 10 after
1543 bug_50638 1555 bug_50638
1544 Memcheck:Cond 1556 Memcheck:Cond
1545 fun:gleUpdateViewScissorData 1557 fun:gleUpdateViewScissorData
1546 ... 1558 ...
1547 fun:cgl_set_surface 1559 fun:cgl_set_surface
1548 fun:ogl_attach_surface 1560 fun:ogl_attach_surface
1549 fun:ogl_render_fade_transition 1561 fun:ogl_render_fade_transition
1550 fun:ogl_render_layer_ 1562 fun:ogl_render_layer_
1551 fun:ogl_render_layers 1563 fun:ogl_render_layers
1552 } 1564 }
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