OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file contains the default suppressions for LeakSanitizer. | 5 // This file contains the default suppressions for LeakSanitizer. |
6 // You can also pass additional suppressions via LSAN_OPTIONS: | 6 // You can also pass additional suppressions via LSAN_OPTIONS: |
7 // LSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to | 7 // LSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to |
8 // http://dev.chromium.org/developers/testing/leaksanitizer for more info. | 8 // http://dev.chromium.org/developers/testing/leaksanitizer for more info. |
9 | 9 |
10 #if defined(LEAK_SANITIZER) | 10 #if defined(LEAK_SANITIZER) |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "leak:WTF::StringImpl::createUninitialized\n" | 59 "leak:WTF::StringImpl::createUninitialized\n" |
60 "leak:WTF::StringImpl::create8BitIfPossible\n" | 60 "leak:WTF::StringImpl::create8BitIfPossible\n" |
61 "leak:blink::MouseEvent::create\n" | 61 "leak:blink::MouseEvent::create\n" |
62 "leak:blink::WindowProxy::initializeIfNeeded\n" | 62 "leak:blink::WindowProxy::initializeIfNeeded\n" |
63 "leak:blink::*::*GetterCallback\n" | 63 "leak:blink::*::*GetterCallback\n" |
64 "leak:blink::CSSComputedStyleDeclaration::create\n" | 64 "leak:blink::CSSComputedStyleDeclaration::create\n" |
65 "leak:blink::V8PerIsolateData::ensureDomInJSContext\n" | 65 "leak:blink::V8PerIsolateData::ensureDomInJSContext\n" |
66 "leak:gin/object_template_builder.h\n" | 66 "leak:gin/object_template_builder.h\n" |
67 "leak:gin::internal::Dispatcher\n" | 67 "leak:gin::internal::Dispatcher\n" |
68 "leak:blink::LocalDOMWindow::getComputedStyle\n" | 68 "leak:blink::LocalDOMWindow::getComputedStyle\n" |
69 "leak:blink::RemoteDOMWindow::create\n" | 69 // This should really be RemoteDOMWindow::create, but symbolization is |
| 70 // weird in release builds. https://crbug.com/484760 |
| 71 "leak:blink::RemoteFrame::create\n" |
70 | 72 |
71 // http://crbug.com/356785 | 73 // http://crbug.com/356785 |
72 "leak:content::RenderViewImplTest_DecideNavigationPolicyForWebUI_Test::TestBody\
n" | 74 "leak:content::RenderViewImplTest_DecideNavigationPolicyForWebUI_Test::TestBody\
n" |
73 | 75 |
74 // ================ Leaks in Chromium code ================ | 76 // ================ Leaks in Chromium code ================ |
75 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. | 77 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. |
76 // Instead, commits that introduce memory leaks should be reverted. Suppressing | 78 // Instead, commits that introduce memory leaks should be reverted. Suppressing |
77 // the leak is acceptable in some cases when reverting is impossible, i.e. when | 79 // the leak is acceptable in some cases when reverting is impossible, i.e. when |
78 // enabling leak detection for the first time for a test target with | 80 // enabling leak detection for the first time for a test target with |
79 // pre-existing leaks. | 81 // pre-existing leaks. |
(...skipping 12 matching lines...) Expand all Loading... |
92 | 94 |
93 // http://crbug.com/356306 | 95 // http://crbug.com/356306 |
94 "leak:content::SetProcessTitleFromCommandLine\n" | 96 "leak:content::SetProcessTitleFromCommandLine\n" |
95 | 97 |
96 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. | 98 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. |
97 | 99 |
98 // End of suppressions. | 100 // End of suppressions. |
99 ; // Please keep this semicolon. | 101 ; // Please keep this semicolon. |
100 | 102 |
101 #endif // LEAK_SANITIZER | 103 #endif // LEAK_SANITIZER |
OLD | NEW |