Add unit test for the Settings API Bubble.
[chromium-blink-merge.git] / tools / lsan / suppressions.txt
bloba71af5bba66fc89d7a70e2e922e0dd10444fc564
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 # False positive in Blink due to bit twiddling on pointers. http://crbug.com/242672
10 # TODO(earthdok): Annotate.
11 leak:WTF::BitVector::resizeOutOfLine
13 # A small string is leaked here (57 bytes per process). http://crbug.com/46571#c9
14 leak:WebCore::V8GCController::collectGarbage
16 # Intentional leak in Blink. http://crbug.com/121729
17 # TODO(earthdok): annotate it.
18 leak:WebCore::parseUASheet
20 # http://crbug.com/270180
21 leak:net::ProxyResolverV8::Context::ResolveProxy
23 # NSS leaks in CertDatabaseNSSTest tests. http://crbug.com/51988
24 leak:net::NSSCertDatabase::ImportFromPKCS12
25 leak:net::NSSCertDatabase::ListCerts
26 leak:net::NSSCertDatabase::DeleteCertAndKey
27 leak:crypto::ScopedTestNSSDB::ScopedTestNSSDB
28 # Another leak due to not shutting down NSS properly. http://crbug.com/124445
29 leak:error_get_my_stack
31 # XRandR has several one time leaks.
32 leak:libxrandr
34 # The NSS suppressions above will not fire when the fast stack unwinder is used,
35 # because it can't unwind through NSS libraries. Apply blanket suppressions for
36 # now.
37 leak:libnssutil3
38 leak:libnspr4
39 leak:libnss3
40 leak:libplds4
41 leak:libnssckbi
43 # Skia leaks GrGpuGL::ProgramCache::Entry. http://crbug.com/262934
44 leak:GrGpuGL::flushGraphicsState
46 # xrandr leak. http://crbug.com/119677
47 leak:XRRFindDisplay
49 # V8 may leak this by design in unit tests. http://crbug.com/323149
50 leak:v8::internal::Genesis::Genesis
52 # Suppressions for objects which can be owned by the V8 heap. This is a
53 # temporary workaround until LeakSanitizer supports the V8 heap.
54 # Those should only fire in (browser)tests. If you see one of them in Chrome,
55 # then it's a real leak.
56 # http://crbug.com/328552
57 leak:WTF::StringImpl::createUninitialized
58 leak:WTF::StringImpl::create8BitIfPossible
59 leak:WebCore::MouseEvent::create
60 leak:WebCore::V8WindowShell::initializeIfNeeded
61 leak:WebCore::*::*GetterCallback
62 leak:WebCore::CSSComputedStyleDeclaration::create
63 leak:WebCore::V8PerIsolateData::ensureDomInJSContext
65 # http://crbug.com/356785
66 leak:content::RenderViewImplTest_DecideNavigationPolicyForWebUI_Test::TestBody
68 #### Actual bugs in Chromium code ####
69 # PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS.
70 # Instead, commits that introduce memory leaks should be reverted. Suppressing
71 # the leak is acceptable in some cases when reverting is impossible, i.e. when
72 # enabling leak detection for the first time for a test target with pre-existing
73 # leaks.
75 # Small test-only leak in ppapi_unittests. http://crbug.com/258113
76 leak:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test
78 # Leak in cc_unittests. http://crbug.com/285174
79 leak:gpu::gles2::GLES2DecoderImpl::DoBindRenderbuffer
80 leak:gpu::gles2::GLES2DecoderImpl::DoRenderbufferStorage
82 # Leak in unit_tests and browser_tests. http://crbug.com/309468
83 leak:TranslateBubbleView::CreateViewBeforeTranslate()
85 # GTK leaks. GTK is deprecated, so we won't be fixing these.
86 # Most of them should apply to the full browser process only.
87 leak:StatusIconGtk::UpdatePlatformContextMenu
88 leak:GlobalMenuBar::GlobalMenuBar
89 leak:BookmarkBubbleGtk::InitFolderComboModel
90 leak:TranslateInfoBarBase::CreateLanguageCombobox
91 leak:GtkNativeViewManager
92 leak:_gdk_x11_window_get_toplevel
93 leak:gtk_util::*AppModal
95 # http://crbug.com/318221
96 leak:base::EnsureProcessTerminated
98 # http://crbug.com/322671
99 leak:content::SpeechRecognitionBrowserTest::SetUpOnMainThread
101 # http://crbug.com/355641
102 leak:TrayAccessibilityTest
104 # PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS.