Add input data parser for Mojo message validation tests.
[chromium-blink-merge.git] / tools / lsan / suppressions.txt
blob2be6d3be929a011849bdd1b863320863e130e6d5
1 # HeapCheck sanity test
2 leak:base::ToolsSanityTest_MemoryLeak_Test::TestBody
4 #### Third-party leaks ####
6 # False positives in libfontconfig. http://crbug.com/39050
7 leak:libfontconfig
9 # Leaks in Nvidia's libGL.
10 leak:libGL.so
12 # A small string is leaked here (57 bytes per process). http://crbug.com/46571#c9
13 leak:WebCore::V8GCController::collectGarbage
15 # http://crbug.com/270180
16 leak:net::ProxyResolverV8::Context::ResolveProxy
18 # NSS leaks in CertDatabaseNSSTest tests. http://crbug.com/51988
19 leak:net::NSSCertDatabase::ImportFromPKCS12
20 leak:net::NSSCertDatabase::ListCerts
21 leak:net::NSSCertDatabase::DeleteCertAndKey
22 leak:crypto::ScopedTestNSSDB::ScopedTestNSSDB
23 # Another leak due to not shutting down NSS properly. http://crbug.com/124445
24 leak:error_get_my_stack
26 # XRandR has several one time leaks.
27 leak:libxrandr
29 # The NSS suppressions above will not fire when the fast stack unwinder is used,
30 # because it can't unwind through NSS libraries. Apply blanket suppressions for
31 # now.
32 leak:libnssutil3
33 leak:libnspr4
34 leak:libnss3
35 leak:libplds4
36 leak:libnssckbi
38 # Skia leaks GrGpuGL::ProgramCache::Entry. http://crbug.com/262934
39 leak:GrGpuGL::flushGraphicsState
41 # xrandr leak. http://crbug.com/119677
42 leak:XRRFindDisplay
44 # V8 may leak this by design in unit tests. http://crbug.com/323149
45 leak:v8::internal::Genesis::Genesis
47 # Suppressions for objects which can be owned by the V8 heap. This is a
48 # temporary workaround until LeakSanitizer supports the V8 heap.
49 # Those should only fire in (browser)tests. If you see one of them in Chrome,
50 # then it's a real leak.
51 # http://crbug.com/328552
52 leak:WTF::StringImpl::createUninitialized
53 leak:WTF::StringImpl::create8BitIfPossible
54 leak:WebCore::MouseEvent::create
55 leak:WebCore::V8WindowShell::initializeIfNeeded
56 leak:WebCore::*::*GetterCallback
57 leak:WebCore::CSSComputedStyleDeclaration::create
58 leak:WebCore::V8PerIsolateData::ensureDomInJSContext
60 # http://crbug.com/356785
61 leak:content::RenderViewImplTest_DecideNavigationPolicyForWebUI_Test::TestBody
63 #### Actual bugs in Chromium code ####
64 # PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS.
65 # Instead, commits that introduce memory leaks should be reverted. Suppressing
66 # the leak is acceptable in some cases when reverting is impossible, i.e. when
67 # enabling leak detection for the first time for a test target with pre-existing
68 # leaks.
70 # Small test-only leak in ppapi_unittests. http://crbug.com/258113
71 leak:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test
73 # Leak in cc_unittests. http://crbug.com/285174
74 leak:gpu::gles2::GLES2DecoderImpl::DoBindRenderbuffer
75 leak:gpu::gles2::GLES2DecoderImpl::DoRenderbufferStorage
77 # Leak in unit_tests and browser_tests. http://crbug.com/309468
78 leak:TranslateBubbleView::CreateViewBeforeTranslate()
80 # GTK leaks. GTK is deprecated, so we won't be fixing these.
81 # Most of them should apply to the full browser process only.
82 leak:StatusIconGtk::UpdatePlatformContextMenu
83 leak:GlobalMenuBar::GlobalMenuBar
84 leak:BookmarkBubbleGtk::InitFolderComboModel
85 leak:TranslateInfoBarBase::CreateLanguageCombobox
86 leak:GtkNativeViewManager
87 leak:_gdk_x11_window_get_toplevel
88 leak:gtk_util::*AppModal
90 # http://crbug.com/318221
91 leak:base::EnsureProcessTerminated
93 # http://crbug.com/322671
94 leak:content::SpeechRecognitionBrowserTest::SetUpOnMainThread
96 # http://crbug.com/355641
97 leak:TrayAccessibilityTest
99 # http://crbug.com/354644
100 leak:CertificateViewerUITest::ShowModalCertificateViewer
102 # http://crbug.com/356306
103 leak:content::SetProcessTitleFromCommandLine
105 # http://crbug.com/354881
106 leak:LoginUtilsBlockingLoginTest_EnterpriseLoginBlocksForEnterpriseUser
107 leak:LoginUtilsTest::SetUp
108 leak:LoginUtilsTest::PrepareProfile
110 # http://crbug.com/371974
111 leak:base::ImportantFileWriter::PostWriteTask
113 # http://crbug.com/328092
114 leak:WebCore::ResourceFetcher::requestResource
115 leak:content::ResourceFetcherTests::ResourceFetcherDeletedInCallbackOnRenderer
116 leak:content::ResourceFetcherTests::ResourceFetcherTimeoutOnRenderer
118 # PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS.