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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 // http://crbug.com/273047 | 134 // http://crbug.com/273047 |
135 "race:base::*::g_lazy_tls_ptr\n" | 135 "race:base::*::g_lazy_tls_ptr\n" |
136 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n" | 136 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n" |
137 | 137 |
138 // http://crbug.com/280466 | 138 // http://crbug.com/280466 |
139 "race:content::WebRtcAudioCapturer::SetCapturerSource\n" | 139 "race:content::WebRtcAudioCapturer::SetCapturerSource\n" |
140 | 140 |
141 // http://crbug.com/285242 | 141 // http://crbug.com/285242 |
142 "race:media::PulseAudioOutputStream::SetVolume\n" | 142 "race:media::PulseAudioOutputStream::SetVolume\n" |
143 | 143 |
144 // http://crbug.com/296883 | |
145 "race:net::URLFetcherCore::Stop\n" | |
146 | |
147 // http://crbug.com/308590 | 144 // http://crbug.com/308590 |
148 "race:CustomThreadWatcher::~CustomThreadWatcher\n" | 145 "race:CustomThreadWatcher::~CustomThreadWatcher\n" |
149 | 146 |
150 // http://crbug.com/310851 | 147 // http://crbug.com/310851 |
151 "race:net::ProxyResolverV8Tracing::Job::~Job\n" | 148 "race:net::ProxyResolverV8Tracing::Job::~Job\n" |
152 | 149 |
153 // http://crbug.com/313726 | 150 // http://crbug.com/313726 |
154 "race:CallbackWasCalled\n" | 151 "race:CallbackWasCalled\n" |
155 | 152 |
156 // http://crbug.com/327330 | 153 // http://crbug.com/327330 |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 // https://crbug.com/459429 | 313 // https://crbug.com/459429 |
317 "race:randomnessPid\n" | 314 "race:randomnessPid\n" |
318 | 315 |
319 // https://crbug.com/454655 | 316 // https://crbug.com/454655 |
320 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" | 317 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" |
321 | 318 |
322 // End of suppressions. | 319 // End of suppressions. |
323 ; // Please keep this semicolon. | 320 ; // Please keep this semicolon. |
324 | 321 |
325 #endif // THREAD_SANITIZER | 322 #endif // THREAD_SANITIZER |
OLD | NEW |