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

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

Issue 2687713003: Stop base::OpenFile from leaking fds/handles into child procs. (Closed)
Patch Set: gab comments Created 3 years, 10 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
« no previous file with comments | « base/files/file_util_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 // xrandr leak. http://crbug.com/119677 54 // xrandr leak. http://crbug.com/119677
55 "leak:XRRFindDisplay\n" 55 "leak:XRRFindDisplay\n"
56 56
57 // http://crbug.com/431213, http://crbug.com/416665 57 // http://crbug.com/431213, http://crbug.com/416665
58 "leak:gin/object_template_builder.h\n" 58 "leak:gin/object_template_builder.h\n"
59 59
60 // Leaks in swrast_dri.so. http://crbug.com/540042 60 // Leaks in swrast_dri.so. http://crbug.com/540042
61 "leak:swrast_dri.so\n" 61 "leak:swrast_dri.so\n"
62 62
63 // Leak in glibc's gconv caused by fopen(..., "r,ccs=UNICODE")
64 "leak:__gconv_lookup_cache\n"
65
63 // ================ Leaks in Chromium code ================ 66 // ================ Leaks in Chromium code ================
64 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS. 67 // PLEASE DO NOT ADD SUPPRESSIONS FOR NEW LEAKS.
65 // Instead, commits that introduce memory leaks should be reverted. Suppressing 68 // Instead, commits that introduce memory leaks should be reverted. Suppressing
66 // the leak is acceptable in some cases when reverting is impossible, i.e. when 69 // the leak is acceptable in some cases when reverting is impossible, i.e. when
67 // enabling leak detection for the first time for a test target with 70 // enabling leak detection for the first time for a test target with
68 // pre-existing leaks. 71 // pre-existing leaks.
69 72
70 // Small test-only leak in ppapi_unittests. http://crbug.com/258113 73 // Small test-only leak in ppapi_unittests. http://crbug.com/258113
71 "leak:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test\n" 74 "leak:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test\n"
72 75
(...skipping 11 matching lines...) Expand all
84 87
85 // http://crbug.com/601435 88 // http://crbug.com/601435
86 "leak:mojo/edk/js/handle.h\n" 89 "leak:mojo/edk/js/handle.h\n"
87 90
88 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. 91 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS.
89 92
90 // End of suppressions. 93 // End of suppressions.
91 ; // Please keep this semicolon. 94 ; // Please keep this semicolon.
92 95
93 #endif // LEAK_SANITIZER 96 #endif // LEAK_SANITIZER
OLDNEW
« no previous file with comments | « base/files/file_util_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698