Bug 1614294 - Increase the shutdown crash timeout for TSan builds. r=froydnj

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Christian Holler 2020-03-05 14:01:35 +00:00
Родитель 070a000dd4
Коммит 49a529842a
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -812,7 +812,11 @@ pref("toolkit.telemetry.unified", true);
#else
// ASan and TSan builds can be considerably slower. Extend the grace period
// of both asyncshutdown and the terminator.
pref("toolkit.asyncshutdown.crash_timeout", 180000); // 3 minutes
#if defined(MOZ_TSAN)
pref("toolkit.asyncshutdown.crash_timeout", 360000); // 6 minutes
#else
pref("toolkit.asyncshutdown.crash_timeout", 180000); // 3 minutes
#endif
#endif // !defined(MOZ_ASAN) && !defined(MOZ_TSAN)
// Extra logging for AsyncShutdown barriers and phases
pref("toolkit.asyncshutdown.log", false);