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

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

Issue 3029013: Valgrind: Sort the suppressions list; merge a duplicate; move a few mac only ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « tools/valgrind/memcheck/suppressions.txt ('k') | 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.
11 #----------------------------------------------------------------------- 11 #-----------------------------------------------------------------------
12 12
13 # 1. Third party stuff we have no control over. 13 # 1. Third party stuff we have no control over.
14 { 14 {
15 FIXME mac kevent libevent probably needs valgrind hooks 15 FIXME mac kevent libevent probably needs valgrind hooks
16 Memcheck:Param 16 Memcheck:Param
17 kevent(changelist) 17 kevent(changelist)
18 fun:kevent 18 fun:kevent
19 fun:event_base_new 19 fun:event_base_new
20 } 20 }
21 { 21 {
22 # CoreAudio leak. See http://crbug.com/9351
23 bug_9351
24 Memcheck:Leak
25 fun:_Znw*
26 fun:_ZN12HALCADClient19AddPropertyListenerEmPK26AudioObjectPropertyAddressPFl mmS2_PvES3_
27 fun:_ZN16HALDefaultDevice22InstallServerListenersEv
28 fun:_ZN16HALDefaultDevice10InitializeEv
29 fun:_ZN9HALSystem16CheckOutInstanceEv
30 fun:AudioObjectGetPropertyData
31 fun:_ZN15AudioManagerMac*HasAudioOutputDevicesEv
32 }
33 {
22 # Mac test_shell_tests. See http://crbug.com/11134 34 # Mac test_shell_tests. See http://crbug.com/11134
23 # Doesn't happen on bots, but happens like crazy on the smo 35 # Doesn't happen on bots, but happens like crazy on the smo
24 # test machine 'caliban'. Don't delete just because it 36 # test machine 'caliban'. Don't delete just because it
25 # doesn't happen on the bots. 37 # doesn't happen on the bots.
26 bug_11134 38 bug_11134
27 Memcheck:Value4 39 Memcheck:Value4
28 fun:vCMMVectorConvert8BitRGBToRGB 40 fun:vCMMVectorConvert8BitRGBToRGB
29 fun:_ZNK15CMMConvRGBToRGB7ConvertER8CMM8BitsP14CMMRuntimeInfomm 41 fun:_ZNK15CMMConvRGBToRGB7ConvertER8CMM8BitsP14CMMRuntimeInfomm
30 } 42 }
31 { 43 {
32 # Mac system library bug? See http://crbug.com/11327 44 # Mac system library bug? See http://crbug.com/11327
33 bug_11327 45 bug_11327
34 Memcheck:Cond 46 Memcheck:Cond
35 fun:_ZN19AudioConverterChain5ResetEv 47 fun:_ZN19AudioConverterChain5ResetEv
36 fun:AudioConverterReset 48 fun:AudioConverterReset
37 obj:/System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio 49 obj:/System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
38 } 50 }
39 { 51 {
40 # Mac system library bug? See http://crbug.com/11327 52 # Mac system library bug? See http://crbug.com/11327
41 bug_11327b 53 bug_11327b
42 Memcheck:Cond 54 Memcheck:Cond
43 fun:AUNetSendEntry 55 fun:AUNetSendEntry
44 fun:AUNetSendEntry 56 fun:AUNetSendEntry
45 obj:/System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio 57 obj:/System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
46 } 58 }
47 { 59 {
48 # CoreAudio leak. See http://crbug.com/9351
49 bug_9351
50 Memcheck:Leak
51 fun:_Znw*
52 fun:_ZN12HALCADClient19AddPropertyListenerEmPK26AudioObjectPropertyAddressPFl mmS2_PvES3_
53 fun:_ZN16HALDefaultDevice22InstallServerListenersEv
54 fun:_ZN16HALDefaultDevice10InitializeEv
55 fun:_ZN9HALSystem16CheckOutInstanceEv
56 fun:AudioObjectGetPropertyData
57 fun:_ZN15AudioManagerMac*HasAudioOutputDevicesEv
58 }
59 {
60 # Filed with Apple as rdar://6915060; see http://crbug.com/11270 60 # Filed with Apple as rdar://6915060; see http://crbug.com/11270
61 bug_11270 61 bug_11270
62 Memcheck:Leak 62 Memcheck:Leak
63 fun:calloc 63 fun:calloc
64 fun:CMSSetLabCLUT 64 fun:CMSSetLabCLUT
65 } 65 }
66 { 66 {
67 # Mac leak in CMOpenOrNewAccess in unit_tests PlatformCanvas_SkLayer_Test, 67 # Mac leak in CMOpenOrNewAccess in unit_tests PlatformCanvas_SkLayer_Test,
68 # ToolbarControllerTest_FocusLocation_Test. See http://crbug.com/11333. 68 # ToolbarControllerTest_FocusLocation_Test. See http://crbug.com/11333.
69 bug_11333 69 bug_11333
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 fun:_ZN10CLVContextC2EPKvm 306 fun:_ZN10CLVContextC2EPKvm
307 fun:_Z26getAllCarbonLazyValues2000v 307 fun:_Z26getAllCarbonLazyValues2000v
308 fun:CLVVisitValuesForKey 308 fun:CLVVisitValuesForKey
309 fun:INIT_ResourceManager 309 fun:INIT_ResourceManager
310 fun:CurResFile 310 fun:CurResFile
311 ... 311 ...
312 fun:_ZN5NPAPI12_GLOBAL__N_117ReadSTRPluginInfoERK8FilePathP10__CFBundleP13Web PluginInfo 312 fun:_ZN5NPAPI12_GLOBAL__N_117ReadSTRPluginInfoERK8FilePathP10__CFBundleP13Web PluginInfo
313 fun:_ZN5NPAPI9PluginLib17ReadWebPluginInfoERK8FilePathP13WebPluginInfo 313 fun:_ZN5NPAPI9PluginLib17ReadWebPluginInfoERK8FilePathP13WebPluginInfo
314 } 314 }
315 { 315 {
316 bug_20997
317 Memcheck:Param
318 socketcall.sendmsg(msg.msg_iov[i])
319 fun:sendmsg$UNIX2003
320 fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
321 }
322 {
323 bug_21280 316 bug_21280
324 Memcheck:Leak 317 Memcheck:Leak
325 fun:malloc_zone_malloc 318 fun:malloc_zone_malloc
326 ... 319 ...
327 fun:ATSFontLoadUnicodeCharacterSet 320 fun:ATSFontLoadUnicodeCharacterSet
328 ... 321 ...
329 fun:__NSFontInstanceInfoInitializeMetricsInfo 322 fun:__NSFontInstanceInfoInitializeMetricsInfo
330 ... 323 ...
331 fun:-[NSFont boundingRectForGlyph:] 324 fun:-[NSFont boundingRectForGlyph:]
332 } 325 }
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3 _EvPT_T0_RK6Tuple1IT1_E 471 fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3 _EvPT_T0_RK6Tuple1IT1_E
479 fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tu ple1IS3_EE3RunEv 472 fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tu ple1IS3_EE3RunEv
480 fun:_ZN11MessageLoop7RunTaskEP4Task 473 fun:_ZN11MessageLoop7RunTaskEP4Task
481 fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE 474 fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
482 fun:_ZN11MessageLoop6DoWorkEv 475 fun:_ZN11MessageLoop6DoWorkEv
483 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE 476 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
484 fun:_ZN11MessageLoop11RunInternalEv 477 fun:_ZN11MessageLoop11RunInternalEv
485 fun:_ZN11MessageLoop10RunHandlerEv 478 fun:_ZN11MessageLoop10RunHandlerEv
486 } 479 }
487 { 480 {
481 bug_27991
482 Memcheck:Addr4
483 fun:_ZN11MessageLoop7RunTaskEP4Task
484 fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
485 fun:_ZN11MessageLoop6DoWorkEv
486 fun:_ZN4base24MessagePumpCFRunLoopBase7RunWorkEv
487 fun:_ZN4base24MessagePumpCFRunLoopBase13RunWorkSourceEPv
488 fun:CFRunLoopRunSpecific
stuartmorgan 2010/07/20 21:42:05 Everything after this frame can go, since it all b
Lei Zhang 2010/07/20 22:23:16 Done.
489 fun:CFRunLoopRunInMode
490 fun:RunCurrentEventLoopInMode
491 fun:ReceiveNextEventCommon
492 fun:BlockUntilNextEventMatchingListInMode
493 fun:_DPSNextEvent
494 fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
495 fun:-[NSApplication run]
496 fun:_ZN4base24MessagePumpNSApplication5DoRunEPNS_11MessagePump8DelegateE
497 fun:_ZN4base24MessagePumpCFRunLoopBase3RunEPNS_11MessagePump8DelegateE
498 fun:_ZN11MessageLoop11RunInternalEv
499 fun:_ZN11MessageLoop10RunHandlerEv
500 }
501 {
488 bug_28847a 502 bug_28847a
489 Memcheck:Leak 503 Memcheck:Leak
490 fun:_Znw* 504 fun:_Znw*
491 fun:_ZN13WorkerService12CreateWorkerERK4GURLbbRKSbItN4base20string16_char_tra itsESaItEEiiPN3IPC7Message6SenderEi 505 fun:_ZN13WorkerService12CreateWorkerERK4GURLbbRKSbItN4base20string16_char_tra itsESaItEEiiPN3IPC7Message6SenderEi
492 fun:_ZN21ResourceMessageFilter14OnCreateWorkerERK4GURLbRKSbItN4base20string16 _char_traitsESaItEEiPi 506 fun:_ZN21ResourceMessageFilter14OnCreateWorkerERK4GURLbRKSbItN4base20string16 _char_traitsESaItEEiPi
493 } 507 }
494 { 508 {
495 bug_28847b 509 bug_28847b
496 Memcheck:Leak 510 Memcheck:Leak
497 fun:_Znw* 511 fun:_Znw*
498 fun:_ZN16ChildProcessHost6LaunchERKSt6vectorISt4pairISsSsESaIS2_EEP11CommandL ine 512 fun:_ZN16ChildProcessHost6LaunchERKSt6vectorISt4pairISsSsESaIS2_EEP11CommandL ine
499 fun:_ZN17WorkerProcessHost4InitEv 513 fun:_ZN17WorkerProcessHost4InitEv
500 fun:_ZN13WorkerService12CreateWorkerERK4GURLbbRKSbItN4base20string16_char_tra itsESaItEEiiPN3IPC7Message6SenderEi 514 fun:_ZN13WorkerService12CreateWorkerERK4GURLbbRKSbItN4base20string16_char_tra itsESaItEEiiPN3IPC7Message6SenderEi
501 fun:_ZN21ResourceMessageFilter14OnCreateWorkerERK4GURLbRKSbItN4base20string16 _char_traitsESaItEEiPi 515 fun:_ZN21ResourceMessageFilter14OnCreateWorkerERK4GURLbRKSbItN4base20string16 _char_traitsESaItEEiPi
502 } 516 }
503 { 517 {
504 bug_29325 518 bug_29325
505 Memcheck:Leak 519 Memcheck:Leak
506 fun:_Znw* 520 fun:_Znw*
507 fun:_ZN11ProfileImplC2ERK8FilePath 521 fun:_ZN11ProfileImplC2ERK8FilePath
508 fun:_ZN11ProfileImplC1ERK8FilePath 522 fun:_ZN11ProfileImplC1ERK8FilePath
509 fun:_ZN7Profile13CreateProfileERK8FilePath 523 fun:_ZN7Profile13CreateProfileERK8FilePath
510 fun:_ZN14ProfileManager13CreateProfileERK8FilePath 524 fun:_ZN14ProfileManager13CreateProfileERK8FilePath
511 fun:_ZN14ProfileManager10GetProfileERK8FilePath 525 fun:_ZN14ProfileManager10GetProfileERK8FilePath
512 fun:_ZN14ProfileManager17GetDefaultProfileERK8FilePath 526 fun:_ZN14ProfileManager17GetDefaultProfileERK8FilePath
513 } 527 }
514 { 528 {
529 bug_28071
530 Memcheck:Addr4
531 fun:_ZN10CLVContextC2EPKvm
532 fun:_Z26getAllCarbonLazyValues2000v
533 fun:CLVVisitValuesForKey
534 fun:aeInstallLazyEventHandlers
535 fun:AEGetEventHandler
536 fun:AEGetSpecialHandler
537 fun:_Z35_findSysPreHIToolboxDispatchHandlermmPl
538 fun:_Z20aeDispatchAppleEventPK6AEDescPS_mPh
539 fun:_Z25dispatchEventAndSendReplyPK6AEDescPS_
540 fun:aeProcessAppleEvent
541 fun:AEProcessAppleEvent
stuartmorgan 2010/07/20 21:42:05 While you are moving these, can you strip off ever
Lei Zhang 2010/07/20 22:23:16 Done.
542 fun:_DPSNextEvent
543 fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
544 fun:-[NSApplication run]
545 fun:_ZN4base24MessagePumpNSApplication5DoRunEPNS_11MessagePump8DelegateE
546 fun:_ZN4base24MessagePumpCFRunLoopBase3RunEPNS_11MessagePump8DelegateE
547 fun:_ZN11MessageLoop11RunInternalEv
548 fun:_ZN11MessageLoop10RunHandlerEv
549 }
550 {
515 bug_28072 551 bug_28072
516 Memcheck:Leak 552 Memcheck:Leak
517 ... 553 ...
518 fun:CSBackupSetItemExcluded 554 fun:CSBackupSetItemExcluded
519 fun:_ZN8mac_util22SetFileBackupExclusionERK8FilePathb 555 fun:_ZN8mac_util22SetFileBackupExclusionERK8FilePathb
520 fun:_ZN7history15HistoryDatabase4InitERK8FilePathS3_ 556 fun:_ZN7history15HistoryDatabase4InitERK8FilePathS3_
521 fun:_ZN7history14HistoryBackend8InitImplEv 557 fun:_ZN7history14HistoryBackend8InitImplEv
522 fun:_ZN7history14HistoryBackend4InitEb 558 fun:_ZN7history14HistoryBackend4InitEb
523 } 559 }
524 { 560 {
525 bug_28072 561 bug_28072
526 Memcheck:Addr2 562 Memcheck:Addr2
527 ... 563 ...
528 fun:CSBackupSetItemExcluded 564 fun:CSBackupSetItemExcluded
529 fun:_ZN8mac_util22SetFileBackupExclusionERK8FilePathb 565 fun:_ZN8mac_util22SetFileBackupExclusionERK8FilePathb
530 fun:_ZN7history15HistoryDatabase4InitERK8FilePathS3_ 566 fun:_ZN7history15HistoryDatabase4InitERK8FilePathS3_
531 fun:_ZN7history14HistoryBackend8InitImplEv 567 fun:_ZN7history14HistoryBackend8InitImplEv
532 fun:_ZN7history14HistoryBackend4InitEb 568 fun:_ZN7history14HistoryBackend4InitEb
533 } 569 }
534 { 570 {
571 bug_28073
572 Memcheck:Addr4
573 fun:_ZN10CLVContextC2EPKvm
574 fun:_Z26getAllCarbonLazyValues2000v
575 fun:CLVVisitValuesForKey
576 fun:aeInstallLazyEventHandlers
577 fun:AEGetEventHandler
578 fun:AEGetSpecialHandler
579 fun:_Z35_findSysPreHIToolboxDispatchHandlermmPl
580 fun:_Z20aeDispatchAppleEventPK6AEDescPS_mPh
581 fun:_Z25dispatchEventAndSendReplyPK6AEDescPS_
582 fun:aeProcessAppleEvent
583 fun:AEProcessAppleEvent
584 fun:_DPSNextEvent
585 fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
586 fun:-[NSApplication run]
587 fun:_ZN4base24MessagePumpNSApplication5DoRunEPNS_11MessagePump8DelegateE
588 fun:_ZN4base24MessagePumpCFRunLoopBase3RunEPNS_11MessagePump8DelegateE
589 fun:_ZN11MessageLoop11RunInternalEv
590 fun:_ZN11MessageLoop10RunHandlerEv
591 }
592 {
535 # This may be category 1, but putting here for now and 593 # This may be category 1, but putting here for now and
536 # someone who knows better has to look into this. 594 # someone who knows better has to look into this.
537 bug_30264 595 bug_30264
538 Memcheck:Value4 596 Memcheck:Value4
539 fun:_ZNK10CMMConvLut7ConvertER10CMMMinBitsP14CMMRuntimeInfomm 597 fun:_ZNK10CMMConvLut7ConvertER10CMMMinBitsP14CMMRuntimeInfomm
540 fun:_Z16CMMProcessBitmapP15CMMBitmapParams 598 fun:_Z16CMMProcessBitmapP15CMMBitmapParams
541 fun:DoMatchBitmap 599 fun:DoMatchBitmap
542 fun:CWMatchBitmap 600 fun:CWMatchBitmap
543 fun:ConvertImageGeneric 601 fun:ConvertImageGeneric
544 fun:CMSColorWorldConvertData 602 fun:CMSColorWorldConvertData
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
1291 } 1349 }
1292 { 1350 {
1293 bug_49250 1351 bug_49250
1294 Memcheck:Cond 1352 Memcheck:Cond
1295 fun:gleUpdateFogData 1353 fun:gleUpdateFogData
1296 fun:gleUpdateState 1354 fun:gleUpdateState
1297 fun:_ZN8remoting11CapturerMac12CaptureRectsERKSt6vectorIN3gfx4RectESaIS3_EEP1 4CallbackRunnerI6Tuple1I13scoped_refptrINS_8Capturer11CaptureDataEEEE 1355 fun:_ZN8remoting11CapturerMac12CaptureRectsERKSt6vectorIN3gfx4RectESaIS3_EEP1 4CallbackRunnerI6Tuple1I13scoped_refptrINS_8Capturer11CaptureDataEEEE
1298 fun:_ZN8remoting8Capturer19CaptureInvalidRectsEP14CallbackRunnerI6Tuple1I13sc oped_refptrINS0_11CaptureDataEEEE 1356 fun:_ZN8remoting8Capturer19CaptureInvalidRectsEP14CallbackRunnerI6Tuple1I13sc oped_refptrINS0_11CaptureDataEEEE
1299 fun:_ZN8remoting28CapturerMacTest_Capture_Test8TestBodyEv 1357 fun:_ZN8remoting28CapturerMacTest_Capture_Test8TestBodyEv
1300 } 1358 }
OLDNEW
« no previous file with comments | « tools/valgrind/memcheck/suppressions.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698