OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 ThreadSanitizer. | 5 // This file contains the default suppressions for ThreadSanitizer. |
6 // You can also pass additional suppressions via TSAN_OPTIONS: | 6 // You can also pass additional suppressions via TSAN_OPTIONS: |
7 // TSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to | 7 // TSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to |
8 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 | 8 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 |
9 // for more info. | 9 // for more info. |
10 | 10 |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 // http://crbug.com/334140 | 170 // http://crbug.com/334140 |
171 "race:CommandLine::HasSwitch\n" | 171 "race:CommandLine::HasSwitch\n" |
172 "race:CommandLine::current_process_commandline_\n" | 172 "race:CommandLine::current_process_commandline_\n" |
173 "race:CommandLine::GetSwitchValueASCII\n" | 173 "race:CommandLine::GetSwitchValueASCII\n" |
174 | 174 |
175 // http://crbug.com/338675 | 175 // http://crbug.com/338675 |
176 "race:blink::s_platform\n" | 176 "race:blink::s_platform\n" |
177 "race:content::" | 177 "race:content::" |
178 "RendererWebKitPlatformSupportImpl::~RendererWebKitPlatformSupportImpl\n" | 178 "RendererWebKitPlatformSupportImpl::~RendererWebKitPlatformSupportImpl\n" |
179 | 179 |
180 // http://crbug.com/345240 | |
181 "race:WTF::s_shutdown\n" | |
182 | |
183 // http://crbug.com/345618 | 180 // http://crbug.com/345618 |
184 "race:WebCore::AudioDestinationNode::render\n" | 181 "race:WebCore::AudioDestinationNode::render\n" |
185 | 182 |
186 // http://crbug.com/345624 | 183 // http://crbug.com/345624 |
187 "race:media::DataSource::set_host\n" | 184 "race:media::DataSource::set_host\n" |
188 | 185 |
189 // http://crbug.com/347534 | 186 // http://crbug.com/347534 |
190 "race:v8::internal::V8::TearDown\n" | 187 "race:v8::internal::V8::TearDown\n" |
191 | 188 |
192 // http://crbug.com/347538 | 189 // http://crbug.com/347538 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 // http://crbug.com/633145 | 267 // http://crbug.com/633145 |
271 "race:third_party/libjpeg_turbo/simd/jsimd_x86_64.c\n" | 268 "race:third_party/libjpeg_turbo/simd/jsimd_x86_64.c\n" |
272 | 269 |
273 // http://crbug.com/638378 | 270 // http://crbug.com/638378 |
274 "race:~TaskSchedulerWorkerPoolCheckTlsReuse\n" | 271 "race:~TaskSchedulerWorkerPoolCheckTlsReuse\n" |
275 | 272 |
276 // End of suppressions. | 273 // End of suppressions. |
277 ; // Please keep this semicolon. | 274 ; // Please keep this semicolon. |
278 | 275 |
279 #endif // THREAD_SANITIZER | 276 #endif // THREAD_SANITIZER |
OLD | NEW |