diff options
author | Tom de Vries <tdevries@suse.de> | 2025-01-04 09:41:35 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2025-01-04 09:41:35 +0100 |
commit | d68afffbaa0a57c79006c7ac3a4bfb42f321e979 (patch) | |
tree | e8fa42a015876aa6d8a89a43cbb1196ed530989a | |
parent | 02646a4c561ec88491114b87950cbb827c7d614c (diff) | |
download | gdb-d68afffbaa0a57c79006c7ac3a4bfb42f321e979.zip gdb-d68afffbaa0a57c79006c7ac3a4bfb42f321e979.tar.gz gdb-d68afffbaa0a57c79006c7ac3a4bfb42f321e979.tar.bz2 |
[gdb/testsuite] Skip stabs board in make-check-all.sh
I ran make-check-all.sh with gdb.linespec/explicit.exp, and the only problems
were found with target board stabs.
With target board unix the test-case runs in two seconds, but with target
board stabs it takes 12 seconds due to a timeout.
Stabs support in gdb has been unmaintained for a while, and there's an ongoing
discussion to deprecate and remove it (PR symtab/31210).
It seems unnecessary to excercise this unmaintained feature in
make-check-all.sh, so drop it.
Tested on x86_64-linux.
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31210
-rwxr-xr-x | gdb/testsuite/make-check-all.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/make-check-all.sh b/gdb/testsuite/make-check-all.sh index 0f529ff..28a89b6 100755 --- a/gdb/testsuite/make-check-all.sh +++ b/gdb/testsuite/make-check-all.sh @@ -80,7 +80,7 @@ target_boards=( gold gold-gdb-index readnow - stabs + # Skip the stabs board, Stabs support in gdb is unmaintained. ) # Like target_boards, but not actual files in gdb/testsuite/boards. |