We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdbdbc1 commit 95a88fcCopy full SHA for 95a88fc
debugging-sos-lldb-via-core/test.sh
@@ -42,6 +42,12 @@ dotnet tool install -g dotnet-dump
42
43
dotnet sos install
44
45
+# work around lldb deadlock in v21.1.8 (https://github.com/redhat-developer/dotnet-regular-tests/issues/392#issuecomment-4068491555).
46
+if lldb --version | grep -q "21.1.8"; then
47
+ LINE='settings set target.parallel-module-load false'
48
+ grep -qF "$LINE" ~/.lldbinit || echo "$LINE" >> ~/.lldbinit
49
+fi
50
+
51
framework_dir=$(../dotnet-directory --framework "${sdk_version}")
52
test -f "${framework_dir}/createdump"
53
0 commit comments