diff options
author | Doug Evans <xdje42@gmail.com> | 2015-01-11 14:06:34 -0800 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2015-01-11 14:06:34 -0800 |
commit | 439250fbacfc212a5959b4b5a53ecfee91dfb866 (patch) | |
tree | d8ca359220a4a15371412276967646212eb490f9 /gdb/testsuite/gdb.base/maint.exp | |
parent | ebf3aa72243fec4bc02617673b243a63050e6127 (diff) | |
download | gdb-439250fbacfc212a5959b4b5a53ecfee91dfb866.zip gdb-439250fbacfc212a5959b4b5a53ecfee91dfb866.tar.gz gdb-439250fbacfc212a5959b4b5a53ecfee91dfb866.tar.bz2 |
PR gdb/15830
gdb/ChangeLog:
PR gdb/15830
* NEWS: The "maint demangle" command is renamed as "demangle".
* demangle.c: #include cli/cli-utils.h, language.h.
(demangle_command): New function.
(_initialize_demangle): Add new command "demangle".
* maint.c (maintenance_demangle): Stub out.
(_initialize_maint_cmds): Update help text for "maint demangle",
and mark as deprecated.
gdb/doc/ChangeLog:
* gdb.texinfo (Debugging C Plus Plus): Mention "demangle".
(Symbols): Ditto.
(Maintenance Commands): Delete docs for "maint demangle".
gdb/testsuite/ChangeLog:
* gdb.base/maint.exp: Remove references to "maint demangle".
* gdb.cp/demangle.exp: Update. "maint demangle" -> "demangle".
Add tests for explicitly specifying language to demangle.
* gdb.dlang/demangle.exp: Ditto.
Diffstat (limited to 'gdb/testsuite/gdb.base/maint.exp')
-rw-r--r-- | gdb/testsuite/gdb.base/maint.exp | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gdb/testsuite/gdb.base/maint.exp b/gdb/testsuite/gdb.base/maint.exp index 1573710..e203207 100644 --- a/gdb/testsuite/gdb.base/maint.exp +++ b/gdb/testsuite/gdb.base/maint.exp @@ -25,7 +25,6 @@ #maintenance expand-symtabs -- Expand symtabs matching a file regexp #maintenance set -- Set GDB internal variables used by the GDB maintainer #maintenance show -- Show GDB internal variables used by the GDB maintainer -#maintenance demangle -- Demangle a C++ mangled name #maintenance dump-me -- Get fatal error; make debugger dump its core #maintenance print -- Maintenance command for printing GDB internal state #maintenance info -- Commands for showing internal info about the program being debugged @@ -136,13 +135,6 @@ gdb_test "pwd" \ "Command execution time: \[0-9.\]+ \\(cpu\\), \[0-9.\]+ \\(wall\\)\[\r\n\]+Space used: $decimal \\(\\+$decimal for this command\\)\[\r\n\]+#symtabs: $decimal \\(\\+$decimal\\), #compunits: $decimal \\(\\+$decimal\\), #blocks: $decimal \\(\\+$decimal\\)" gdb_test_no_output "maint set per-command off" -gdb_test "maint demangle" \ - "\"maintenance demangle\" takes an argument to demangle\\." - -gdb_test "maint demangle main" "Can't demangle \"main\"" - - - # The timeout value is raised, because printing all the symbols and # statistical information about Cygwin and Windows libraries takes a lot # of time. @@ -484,7 +476,7 @@ set timeout $oldtimeout #============test help on maint commands gdb_test "help maint" \ - "Commands for use by GDB maintainers\\..*Includes commands to dump specific internal GDB structures in.*a human readable form, to cause GDB to deliberately dump core,.*to test internal functions such as the C../ObjC demangler, etc\\..*List of maintenance subcommands:.*maintenance info.*maintenance internal-error.*maintenance print.*maintenance set.*maintenance show.*Type.*help maintenance.*followed by maintenance subcommand name for full documentation\\..*Command name abbreviations are allowed if unambiguous\\..*" + "Commands for use by GDB maintainers\\..*Includes commands to dump specific internal GDB structures in.*a human readable form, to cause GDB to deliberately dump core, etc\\..*List of maintenance subcommands:.*maintenance info.*maintenance internal-error.*maintenance print.*maintenance set.*maintenance show.*Type.*help maintenance.*followed by maintenance subcommand name for full documentation\\..*Command name abbreviations are allowed if unambiguous\\..*" gdb_test "help maint info" \ "Commands for showing internal info about the program being debugged.*unambiguous\\..*" @@ -496,8 +488,7 @@ test_prefix_command_help {"maint print" "maintenance print"} { test_prefix_command_help {"maint" "maintenance"} { "Commands for use by GDB maintainers\\.\[\r\n\]+" "Includes commands to dump specific internal GDB structures in\[\r\n\]+" - "a human readable form, to cause GDB to deliberately dump core,\[\r\n\]+" - "to test internal functions such as the C\\+\\+/ObjC demangler, etc\\.\[\r\n\]+" + "a human readable form, to cause GDB to deliberately dump core, etc\\.\[\r\n\]+" } #set oldtimeout $timeout |