Bug 1571186 - Disable TestExpirationTracker on debug OSX for frequent failures. r=KrisWright

Apparently this test has a history of failures, and it recently
started failing frequently for no apparent reason.

Differential Revision: https://phabricator.services.mozilla.com/D103116
This commit is contained in:
Andrew McCreight 2021-01-26 22:43:58 +00:00
Родитель 291f86a68e
Коммит 1aac9cb98a
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -20,7 +20,6 @@ UNIFIED_SOURCES += [
"TestEscape.cpp",
"TestEventPriorities.cpp",
"TestEventTargetQI.cpp",
"TestExpirationTracker.cpp",
"TestFile.cpp",
"TestGCPostBarriers.cpp",
"TestID.cpp",
@ -74,6 +73,10 @@ if CONFIG["OS_TARGET"] != "Android":
if not (CONFIG["OS_TARGET"] == "WINNT" and CONFIG["CPU_ARCH"] == "aarch64"):
UNIFIED_SOURCES += ["TestThreadUtils.cpp"]
# skip the test on debug OSX due to frequent failures (bug 1571186)
if not (CONFIG["MOZ_DEBUG"] and CONFIG["OS_TARGET"] == "Darwin"):
UNIFIED_SOURCES += ["TestExpirationTracker.cpp"]
# skip the test on windows10-aarch64 and Android, aarch64 due to bug 1545670
if CONFIG["OS_TARGET"] != "Android" and not (
CONFIG["OS_TARGET"] == "WINNT" and CONFIG["CPU_ARCH"] == "aarch64"