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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 | 54 // Leaks in swrast_dri.so. http://crbug.com/540042 |
55 "leak:swrast_dri.so\n" | 55 "leak:swrast_dri.so\n" |
56 | 56 |
57 // Leaks in GtkFileChooserDialog. http://crbug.com/537468 | |
58 "leak:interactive_ui_tests\n" | |
msw
2015/10/20 23:18:14
This is worse! We definitely don't want to ignore
joone
2015/10/22 02:14:47
Instead, I added libgtk-x11-2.0 to the suppression
| |
59 | |
57 // ================ Leaks in Chromium code ================ | 60 // ================ Leaks in Chromium code ================ |
58 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. | 61 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. |
59 // Instead, commits that introduce memory leaks should be reverted. Suppressing | 62 // 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 | 63 // 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 | 64 // enabling leak detection for the first time for a test target with |
62 // pre-existing leaks. | 65 // pre-existing leaks. |
63 | 66 |
64 // Small test-only leak in ppapi_unittests. http://crbug.com/258113 | 67 // Small test-only leak in ppapi_unittests. http://crbug.com/258113 |
65 "leak:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test\n" | 68 "leak:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test\n" |
66 | 69 |
67 // http://crbug.com/322671 | 70 // http://crbug.com/322671 |
68 "leak:content::SpeechRecognitionBrowserTest::SetUpOnMainThread\n" | 71 "leak:content::SpeechRecognitionBrowserTest::SetUpOnMainThread\n" |
69 | 72 |
70 // http://crbug.com/355641 | 73 // http://crbug.com/355641 |
71 "leak:TrayAccessibilityTest\n" | 74 "leak:TrayAccessibilityTest\n" |
72 | 75 |
73 // http://crbug.com/354644 | 76 // http://crbug.com/354644 |
74 "leak:CertificateViewerUITest::ShowModalCertificateViewer\n" | 77 "leak:CertificateViewerUITest::ShowModalCertificateViewer\n" |
75 | 78 |
76 // http://crbug.com/356306 | 79 // http://crbug.com/356306 |
77 "leak:content::SetProcessTitleFromCommandLine\n" | 80 "leak:content::SetProcessTitleFromCommandLine\n" |
78 | 81 |
79 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. | 82 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. |
80 | 83 |
81 // End of suppressions. | 84 // End of suppressions. |
82 ; // Please keep this semicolon. | 85 ; // Please keep this semicolon. |
83 | 86 |
84 #endif // LEAK_SANITIZER | 87 #endif // LEAK_SANITIZER |
OLD | NEW |