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 11 matching lines...) Expand all Loading... |
22 | 22 |
23 // Intentional race in ToolsSanityTest.DataRace in base_unittests. | 23 // Intentional race in ToolsSanityTest.DataRace in base_unittests. |
24 "race:base/tools_sanity_unittest.cc\n" | 24 "race:base/tools_sanity_unittest.cc\n" |
25 | 25 |
26 // Data race on WatchdogCounter [test-only]. | 26 // Data race on WatchdogCounter [test-only]. |
27 "race:base/threading/watchdog_unittest.cc\n" | 27 "race:base/threading/watchdog_unittest.cc\n" |
28 | 28 |
29 // Races in libevent, http://crbug.com/23244. | 29 // Races in libevent, http://crbug.com/23244. |
30 "race:libevent/event.c\n" | 30 "race:libevent/event.c\n" |
31 | 31 |
32 // http://crbug.com/46840. | |
33 "race:base::HistogramSamples::IncreaseSum\n" | |
34 "race:base::Histogram::Add\n" | |
35 "race:base::HistogramSamples::Add\n" | |
36 | |
37 // http://crbug.com/84094. | 32 // http://crbug.com/84094. |
38 "race:sqlite3StatusSet\n" | 33 "race:sqlite3StatusSet\n" |
39 "race:pcache1EnforceMaxPage\n" | 34 "race:pcache1EnforceMaxPage\n" |
40 "race:pcache1AllocPage\n" | 35 "race:pcache1AllocPage\n" |
41 | 36 |
42 // http://crbug.com/102327. | 37 // http://crbug.com/102327. |
43 // Test-only race, won't fix. | 38 // Test-only race, won't fix. |
44 "race:tracked_objects::ThreadData::ShutdownSingleThreadedCleanup\n" | 39 "race:tracked_objects::ThreadData::ShutdownSingleThreadedCleanup\n" |
45 | 40 |
46 // http://crbug.com/120808 | 41 // http://crbug.com/120808 |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 "race:base::TimerTest_OneShotTimer_CustomTaskRunner_Test::TestBody\n" | 266 "race:base::TimerTest_OneShotTimer_CustomTaskRunner_Test::TestBody\n" |
272 | 267 |
273 // http://crbug.com/v8/6065 | 268 // http://crbug.com/v8/6065 |
274 "race:net::(anonymous namespace)::ProxyResolverV8TracingImpl::RequestImpl" | 269 "race:net::(anonymous namespace)::ProxyResolverV8TracingImpl::RequestImpl" |
275 "::~RequestImpl()\n" | 270 "::~RequestImpl()\n" |
276 | 271 |
277 // End of suppressions. | 272 // End of suppressions. |
278 ; // Please keep this semicolon. | 273 ; // Please keep this semicolon. |
279 | 274 |
280 #endif // THREAD_SANITIZER | 275 #endif // THREAD_SANITIZER |
OLD | NEW |