mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
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:
parent
6931ab286d
commit
0e1d69cc25
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user