Bug 1894073 - Suppress TSan false positive during an edge case in process launch. r=decoder,ipc-reviewers,nika

Differential Revision: https://phabricator.services.mozilla.com/D212644
This commit is contained in:
Jed Davis 2024-06-18 13:47:52 +00:00
Родитель ffee742034
Коммит db155d4dd8
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -315,6 +315,10 @@ extern "C" const char* __tsan_default_suppressions() {
// suppression cannot be used.
"race:libvulkan_lvp.so\n"
// Bug 1894073 - false positive
// TSan isn't aware of IPC; see bug for detailed explanation.
"race:LaunchAppWithForkServer\n"
// End of suppressions.
; // Please keep this semicolon.
}