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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 | 44 |
45 // XRandR has several one time leaks. | 45 // XRandR has several one time leaks. |
46 "leak:libxrandr\n" | 46 "leak:libxrandr\n" |
47 | 47 |
48 // xrandr leak. http://crbug.com/119677 | 48 // xrandr leak. http://crbug.com/119677 |
49 "leak:XRRFindDisplay\n" | 49 "leak:XRRFindDisplay\n" |
50 | 50 |
51 // http://crbug.com/431213, http://crbug.com/416665 | 51 // http://crbug.com/431213, http://crbug.com/416665 |
52 "leak:gin/object_template_builder.h\n" | 52 "leak:gin/object_template_builder.h\n" |
53 | 53 |
| 54 // Leaks in swrast_dri.so. http://crbug.com/540042 |
| 55 "leak:swrast_dri.so\n" |
| 56 |
54 // ================ Leaks in Chromium code ================ | 57 // ================ Leaks in Chromium code ================ |
55 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. | 58 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. |
56 // Instead, commits that introduce memory leaks should be reverted. Suppressing | 59 // Instead, commits that introduce memory leaks should be reverted. Suppressing |
57 // the leak is acceptable in some cases when reverting is impossible, i.e. when | 60 // the leak is acceptable in some cases when reverting is impossible, i.e. when |
58 // enabling leak detection for the first time for a test target with | 61 // enabling leak detection for the first time for a test target with |
59 // pre-existing leaks. | 62 // pre-existing leaks. |
60 | 63 |
61 // Small test-only leak in ppapi_unittests. http://crbug.com/258113 | 64 // Small test-only leak in ppapi_unittests. http://crbug.com/258113 |
62 "leak:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test\n" | 65 "leak:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test\n" |
63 | 66 |
64 // http://crbug.com/322671 | 67 // http://crbug.com/322671 |
65 "leak:content::SpeechRecognitionBrowserTest::SetUpOnMainThread\n" | 68 "leak:content::SpeechRecognitionBrowserTest::SetUpOnMainThread\n" |
66 | 69 |
67 // http://crbug.com/355641 | 70 // http://crbug.com/355641 |
68 "leak:TrayAccessibilityTest\n" | 71 "leak:TrayAccessibilityTest\n" |
69 | 72 |
70 // http://crbug.com/354644 | 73 // http://crbug.com/354644 |
71 "leak:CertificateViewerUITest::ShowModalCertificateViewer\n" | 74 "leak:CertificateViewerUITest::ShowModalCertificateViewer\n" |
72 | 75 |
73 // http://crbug.com/356306 | 76 // http://crbug.com/356306 |
74 "leak:content::SetProcessTitleFromCommandLine\n" | 77 "leak:content::SetProcessTitleFromCommandLine\n" |
75 | 78 |
76 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. | 79 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. |
77 | 80 |
78 // End of suppressions. | 81 // End of suppressions. |
79 ; // Please keep this semicolon. | 82 ; // Please keep this semicolon. |
80 | 83 |
81 #endif // LEAK_SANITIZER | 84 #endif // LEAK_SANITIZER |
OLD | NEW |