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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 | 90 |
91 // http://crbug.com/355641 | 91 // http://crbug.com/355641 |
92 "leak:TrayAccessibilityTest\n" | 92 "leak:TrayAccessibilityTest\n" |
93 | 93 |
94 // http://crbug.com/354644 | 94 // http://crbug.com/354644 |
95 "leak:CertificateViewerUITest::ShowModalCertificateViewer\n" | 95 "leak:CertificateViewerUITest::ShowModalCertificateViewer\n" |
96 | 96 |
97 // http://crbug.com/356306 | 97 // http://crbug.com/356306 |
98 "leak:content::SetProcessTitleFromCommandLine\n" | 98 "leak:content::SetProcessTitleFromCommandLine\n" |
99 | 99 |
| 100 // http://crbug.com/506433 |
| 101 "leak:blink::ResourceFetcher::garbageCollectDocumentResources\n" |
| 102 |
100 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. | 103 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. |
101 | 104 |
102 // End of suppressions. | 105 // End of suppressions. |
103 ; // Please keep this semicolon. | 106 ; // Please keep this semicolon. |
104 | 107 |
105 #endif // LEAK_SANITIZER | 108 #endif // LEAK_SANITIZER |
OLD | NEW |