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

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

Issue 2044183004: Debugging for https://crbug.com/601435. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | extensions/renderer/api/serial/serial_api_unittest.cc » ('j') | 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 // http://crbug.com/355641 76 // http://crbug.com/355641
77 "leak:TrayAccessibilityTest\n" 77 "leak:TrayAccessibilityTest\n"
78 78
79 // http://crbug.com/354644 79 // http://crbug.com/354644
80 "leak:CertificateViewerUITest::ShowModalCertificateViewer\n" 80 "leak:CertificateViewerUITest::ShowModalCertificateViewer\n"
81 81
82 // http://crbug.com/356306 82 // http://crbug.com/356306
83 "leak:content::SetProcessTitleFromCommandLine\n" 83 "leak:content::SetProcessTitleFromCommandLine\n"
84 84
85 // http://crbug.com/601435
86 "leak:mojo/edk/js/handle.h\n"
87
88 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. 85 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS.
89 86
90 // End of suppressions. 87 // End of suppressions.
91 ; // Please keep this semicolon. 88 ; // Please keep this semicolon.
92 89
93 #endif // LEAK_SANITIZER 90 #endif // LEAK_SANITIZER
OLDNEW
« no previous file with comments | « no previous file | extensions/renderer/api/serial/serial_api_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698