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 | |
57 // ================ Leaks in Chromium code ================ | 54 // ================ Leaks in Chromium code ================ |
58 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. | 55 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. |
59 // Instead, commits that introduce memory leaks should be reverted. Suppressing | 56 // Instead, commits that introduce memory leaks should be reverted. Suppressing |
60 // the leak is acceptable in some cases when reverting is impossible, i.e. when | 57 // the leak is acceptable in some cases when reverting is impossible, i.e. when |
61 // enabling leak detection for the first time for a test target with | 58 // enabling leak detection for the first time for a test target with |
62 // pre-existing leaks. | 59 // pre-existing leaks. |
63 | 60 |
64 // Small test-only leak in ppapi_unittests. http://crbug.com/258113 | 61 // Small test-only leak in ppapi_unittests. http://crbug.com/258113 |
65 "leak:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test\n" | 62 "leak:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test\n" |
66 | 63 |
67 // http://crbug.com/322671 | 64 // http://crbug.com/322671 |
68 "leak:content::SpeechRecognitionBrowserTest::SetUpOnMainThread\n" | 65 "leak:content::SpeechRecognitionBrowserTest::SetUpOnMainThread\n" |
69 | 66 |
70 // http://crbug.com/355641 | 67 // http://crbug.com/355641 |
71 "leak:TrayAccessibilityTest\n" | 68 "leak:TrayAccessibilityTest\n" |
72 | 69 |
73 // http://crbug.com/354644 | 70 // http://crbug.com/354644 |
74 "leak:CertificateViewerUITest::ShowModalCertificateViewer\n" | 71 "leak:CertificateViewerUITest::ShowModalCertificateViewer\n" |
75 | 72 |
76 // http://crbug.com/356306 | 73 // http://crbug.com/356306 |
77 "leak:content::SetProcessTitleFromCommandLine\n" | 74 "leak:content::SetProcessTitleFromCommandLine\n" |
78 | 75 |
79 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. | 76 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. |
80 | 77 |
81 // End of suppressions. | 78 // End of suppressions. |
82 ; // Please keep this semicolon. | 79 ; // Please keep this semicolon. |
83 | 80 |
84 #endif // LEAK_SANITIZER | 81 #endif // LEAK_SANITIZER |
OLD | NEW |