From 1bd9c1bde38acddd71bf52fd3748d4c7fc75e8ba Mon Sep 17 00:00:00 2001 From: Orlando Cazalet-Hyams Date: Mon, 6 Oct 2025 09:56:04 +0100 Subject: [PATCH] [Dexter] Allow retries on all dexter tests to avoid lldb-dap flakiness (#161847) This isn't pretty but should help us keep the bot stable while issues such as #158306 and #158311 are investigated --- cross-project-tests/debuginfo-tests/dexter-tests/lit.local.cfg | 3 +++ .../debuginfo-tests/dexter/feature_tests/lit.local.cfg | 3 +++ 2 files changed, 6 insertions(+) diff --git a/cross-project-tests/debuginfo-tests/dexter-tests/lit.local.cfg b/cross-project-tests/debuginfo-tests/dexter-tests/lit.local.cfg index bace385c23f7..6b711331897e 100644 --- a/cross-project-tests/debuginfo-tests/dexter-tests/lit.local.cfg +++ b/cross-project-tests/debuginfo-tests/dexter-tests/lit.local.cfg @@ -1,2 +1,5 @@ if "dexter" not in config.available_features: config.unsupported = True + +# LLDB through lldb-dap causes spurious failures. +config.test_retry_attempts = 2 diff --git a/cross-project-tests/debuginfo-tests/dexter/feature_tests/lit.local.cfg b/cross-project-tests/debuginfo-tests/dexter/feature_tests/lit.local.cfg index 16b969054670..3b98bf565bcf 100644 --- a/cross-project-tests/debuginfo-tests/dexter/feature_tests/lit.local.cfg +++ b/cross-project-tests/debuginfo-tests/dexter/feature_tests/lit.local.cfg @@ -3,3 +3,6 @@ if "dexter" not in config.available_features: config.name = "DExTer feature tests" config.suffixes = [".cpp", ".c", ".test"] + +# LLDB through lldb-dap causes spurious failures. +config.test_retry_attempts = 2