diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-09-11 08:28:04 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-09-11 08:28:04 +0000 |
commit | 5423b017be8ae3fb18960f490df7962702ecc8c4 (patch) | |
tree | 97538b8f1525d6b45f3b5c644b9f6e6e321f09ff /gdb/testsuite | |
parent | f9a1695ef6e26fa3bf1736599c32dbd02f6a7bda (diff) | |
download | gdb-5423b017be8ae3fb18960f490df7962702ecc8c4.zip gdb-5423b017be8ae3fb18960f490df7962702ecc8c4.tar.gz gdb-5423b017be8ae3fb18960f490df7962702ecc8c4.tar.bz2 |
minidebuginfo: Obvious changes
gdb/doc/
2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.texinfo (MiniDebugInfo): Fix two trailing dots.
gdb/testsuite/
2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.base/gnu-debugdata.exp (strip): Add -R .comment.
(addlink): Add comment.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/gnu-debugdata.exp | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 254d56c..1bf8fb8 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com> + + * gdb.base/gnu-debugdata.exp (strip): Add -R .comment. + (addlink): Add comment. + 2013-09-10 Sanimir Agovic <sanimir.agovic@intel.com> * gdb.base/default.exp: Adjust regexpr for 'cd' to match optional diff --git a/gdb/testsuite/gdb.base/gnu-debugdata.exp b/gdb/testsuite/gdb.base/gnu-debugdata.exp index e4e42cd..bbd3a76 100644 --- a/gdb/testsuite/gdb.base/gnu-debugdata.exp +++ b/gdb/testsuite/gdb.base/gnu-debugdata.exp @@ -99,7 +99,7 @@ if {[run_on_host "objcopy 1" [transform objcopy] "-S --remove-section .gdb_index # GDB specific - we do not have split executable in advance. remote_file host delete ${binfile}.strip if {[run_on_host "strip" [transform strip] \ - "--strip-all -o ${binfile}.strip ${binfile}"]} { + "--strip-all -R .comment -o ${binfile}.strip ${binfile}"]} { return -1 } @@ -113,7 +113,8 @@ if {[run_on_host "copydebug" [transform objcopy] \ # Add the .gnu_debuglink section to the .gnu_debugdata file. # .gnu_debuglink is normally not present in the .gnu_debugdata section but in # some files there may be PT_NOTE with NT_GNU_BUILD_ID and GDB could look up -# the .debug file from it. +# the .debug file from it. This is only an additional test of GDB, such link +# is not present in usual MiniDebugInfo sections. if {[run_on_host "addlink" [transform objcopy] \ "--add-gnu-debuglink=${binfile}.debug ${binfile}.mini_debuginfo ${binfile}.mini_debuginfo-debuglink"]} { return -1 |