Bug 1692067 - Add a ThreadSanitizer field to reftest manifest. r=decoder

Adds a `ThreadSanitizer` field to reftest manifest so we can skip perma-failing tests.

Differential Revision: https://phabricator.services.mozilla.com/D114304
This commit is contained in:
Kris Wright 2021-05-05 18:20:33 +00:00
parent 6931ab286d
commit 0e1d69cc25

View File

@ -549,6 +549,12 @@ function BuildConditionSandbox(aURL) {
sandbox.AddressSanitizer = false;
#endif
#if MOZ_TSAN
sandbox.ThreadSanitizer = true;
#else
sandbox.ThreadSanitizer = false;
#endif
#if MOZ_WEBRTC
sandbox.webrtc = true;
#else