Bug 1615228 - Suppress race with base::Thread::Stop(). r=froydnj

Differential Revision: https://phabricator.services.mozilla.com/D62720

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Christian Holler 2020-02-13 14:27:38 +00:00
parent b50347f917
commit 57dc730d44

View File

@ -358,6 +358,11 @@ extern "C" const char* __tsan_default_suppressions() {
"race:init_simd\n"
"race:simd_support\n"
"race:jsimd_can_ycc_rgb\n"
// Likely benign race in ipc/chromium/ where we set
// `message_loop_` to `NULL` on two threads when stopping
// a thread at the same time it is already finishing.
// See also bug 1615228 for discussion.
"race:base::Thread::Stop\n"
// End of suppressions.
; // Please keep this semicolon.