diff options
author | Tom de Vries <tdevries@suse.de> | 2025-05-20 11:05:54 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2025-05-20 11:05:54 +0200 |
commit | 0518fa417d38b53f0876000b62df9634ca0b5109 (patch) | |
tree | 952a88875ac6fb0524731981254e4419b4683e92 | |
parent | 06b112bfcd307f1f7f9531617097b3e028e09088 (diff) | |
download | binutils-0518fa417d38b53f0876000b62df9634ca0b5109.zip binutils-0518fa417d38b53f0876000b62df9634ca0b5109.tar.gz binutils-0518fa417d38b53f0876000b62df9634ca0b5109.tar.bz2 |
[gdb/testsuite] Fix gdbsever typo
I noticed a typo in the testsuite, twice: gdbsever. Fix these.
Codespell doesn't detect it, so add a new file
gdb/contrib/codespell-dictionary.txt that contains a gdbsever->gdbserver
entry, and update gdb/contrib/setup.cfg to use it.
Approved-By: Tom Tromey <tom@tromey.com>
-rw-r--r-- | gdb/contrib/codespell-dictionary.txt | 1 | ||||
-rw-r--r-- | gdb/contrib/setup.cfg | 1 | ||||
-rw-r--r-- | gdb/testsuite/gdb.replay/connect.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.trace/tspeed.exp | 2 |
4 files changed, 4 insertions, 2 deletions
diff --git a/gdb/contrib/codespell-dictionary.txt b/gdb/contrib/codespell-dictionary.txt new file mode 100644 index 0000000..09bc309 --- /dev/null +++ b/gdb/contrib/codespell-dictionary.txt @@ -0,0 +1 @@ +gdbsever->gdbserver diff --git a/gdb/contrib/setup.cfg b/gdb/contrib/setup.cfg index d6be386..5541a01 100644 --- a/gdb/contrib/setup.cfg +++ b/gdb/contrib/setup.cfg @@ -4,6 +4,7 @@ skip = */ChangeLog*,*/configure,gdbsupport/Makefile.in,*.dat,*.eps,gdb/features/*.c,gdb/ada-casefold.h,gdb/copying.c,gdb/gdbarch-gen.h,gdb/gdbarch-gen.c,gdb/target-delegates-gen.c ignore-words = gdb/contrib/codespell-ignore-words.txt +dictionary = gdb/contrib/codespell-dictionary.txt,- # Ignore all URLs. uri-ignore-words-list = * diff --git a/gdb/testsuite/gdb.replay/connect.exp b/gdb/testsuite/gdb.replay/connect.exp index 5790d38..26b7aa3 100644 --- a/gdb/testsuite/gdb.replay/connect.exp +++ b/gdb/testsuite/gdb.replay/connect.exp @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. */ # -# Starts a communication with gdbsever setting the remotelog file. +# Starts a communication with gdbserver setting the remotelog file. # Modifies the remotelog with update_log proc, injects an error message # instead of the expected replay to the vMustReplyEmpty packet in order # to test GDB reacts to the error response properly. After the remotelog diff --git a/gdb/testsuite/gdb.trace/tspeed.exp b/gdb/testsuite/gdb.trace/tspeed.exp index 25862bf..be7f37e 100644 --- a/gdb/testsuite/gdb.trace/tspeed.exp +++ b/gdb/testsuite/gdb.trace/tspeed.exp @@ -17,7 +17,7 @@ load_lib "trace-support.exp" require allow_shlib_tests -# Do not run if gdbsever debug is enabled - the output file is many Gb. +# Do not run if gdbserver debug is enabled - the output file is many Gb. if [gdbserver_debug_enabled] { return 0 } |