From fa042ab851a9df56fdaa59ac774d590e76d36fcb Mon Sep 17 00:00:00 2001 From: Omair Majid Date: Mon, 15 Dec 2025 09:24:51 -0500 Subject: [PATCH] Log lldb version when using it I have seen an unexpected failure when using lldb to debug a core in a CI enviornment. Log additional details to help make it easier to reproduce/fix the problem. --- debugging-sos-lldb-via-core/test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debugging-sos-lldb-via-core/test.sh b/debugging-sos-lldb-via-core/test.sh index a59faab..6a1b5cc 100755 --- a/debugging-sos-lldb-via-core/test.sh +++ b/debugging-sos-lldb-via-core/test.sh @@ -49,6 +49,7 @@ if ! command -v lldb ; then echo "lldb is not installed" exit 1 fi +{ rpm -qa | grep lldb; } || { apk list -i | grep lldb; } || true no_server=("/nodeReuse:false" "/p:UseSharedCompilation=false" "/p:UseRazorBuildServer=false")