[cross-project-tests][lit] Print LLDB version when configuring tests (#192614)

Useful when debugging issues with the LLDB tests.
This commit is contained in:
Michael Buch
2026-04-17 10:09:43 +01:00
committed by GitHub
parent a4cccdc393
commit 58b65fa67f

View File

@@ -311,7 +311,16 @@ def get_lldb_version_string():
def set_lldb_formatters_compatibility_feature():
current_lldb_version = get_lldb_version_string()
if not current_lldb_version:
if current_lldb_version:
print(
f"Found LLDB version '{current_lldb_version}'",
file=sys.stderr,
)
else:
print(
"No LLDB found on host. Skipping tests that require LLDB.",
file=sys.stderr,
)
return
if platform.system() == "Darwin":