Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: build/sanitizers/lsan_suppressions.cc

Issue 1363093004: Add BrowserSelectFileDialogTest.OpenCloseFileDialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: enable the test and skip libglib-2.0 from LSan report Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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:libglib-2.0\n"
msw 2015/10/16 17:01:03 I wonder if this is too wide of a suppression. Wou
joone 2015/10/16 23:33:46 How about adding interactive_ui_tests to the suppr
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698