From 83f7d25c440ab7c4279c0716a5dea41de8238b75 Mon Sep 17 00:00:00 2001 From: Aleksey Midenkov Date: Mon, 18 Jul 2022 23:16:17 +0300 Subject: [PATCH] MDEV-28931 Cleanup: try GDB to print core first Do we still need this Sun Studio hack? --- mysql-test/lib/My/CoreDump.pm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mysql-test/lib/My/CoreDump.pm b/mysql-test/lib/My/CoreDump.pm index 3f983b8e72f..801b3136cd2 100644 --- a/mysql-test/lib/My/CoreDump.pm +++ b/mysql-test/lib/My/CoreDump.pm @@ -316,13 +316,10 @@ sub show { return; } - # We try dbx first; gdb itself may coredump if run on a Sun Studio - # compiled binary on Solaris. - my @debuggers = ( - \&_dbx, \&_gdb, + \&_dbx, \&_lldb, # TODO... );