Bug 1905222 - adds optimized var to the reftest sandbox r=jmaher

Differential Revision: https://phabricator.services.mozilla.com/D215171
This commit is contained in:
Tom Marble 2024-06-28 12:23:15 +00:00
Родитель f88d3be2ff
Коммит 9455d58457
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -624,6 +624,11 @@ function BuildConditionSandbox(aURL) {
sandbox.is64Bit = mozinfo.bits == "64";
sandbox.AddressSanitizer = mozinfo.asan;
sandbox.ThreadSanitizer = mozinfo.tsan;
sandbox.optimized =
!sandbox.isDebugBuild &&
!sandbox.isCoverageBuild &&
!sandbox.AddressSanitizer &&
!sandbox.ThreadSanitizer;
sandbox.release_or_beta = mozinfo.release_or_beta;