diff options
author | Tom de Vries <tdevries@suse.de> | 2020-04-16 08:40:19 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2020-04-16 08:40:19 +0200 |
commit | d191d716f38b41720c4955823fe6c178cf0786f0 (patch) | |
tree | 6460700095046d5466b15bb9f1dfad38467b02dc | |
parent | 2165dc8d90ef9618a1db9bc596f433b02b7cc54a (diff) | |
download | gdb-d191d716f38b41720c4955823fe6c178cf0786f0.zip gdb-d191d716f38b41720c4955823fe6c178cf0786f0.tar.gz gdb-d191d716f38b41720c4955823fe6c178cf0786f0.tar.bz2 |
[gdb/testsuite] Fix maint-expand-symbols-header-file.exp for cc-with-gdb-index
With test-case gdb.base/maint-expand-symbols-header-file.exp and target board
cc-with-gdb-index, we have:
...
FAIL: gdb.base/maint-expand-symbols-header-file.exp: \
verify no symtabs are expanded
...
By default, with partial symbols, we find the main function in the partial
symbols, and derive the initial language setting from that, without expanding
any psymtab.
But that doesn't work with the indices, because the indices don't store the
language with the symbols. So instead, the main psymtab is expanded to get
the language of main, which causes the FAIL.
Fix this by manually setting the language.
Tested on x86_64-linux.
gdb/testsuite/ChangeLog:
2020-04-16 Tom de Vries <tdevries@suse.de>
* gdb.base/maint-expand-symbols-header-file.exp: Set language before
loading exec.
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/maint-expand-symbols-header-file.exp | 8 |
2 files changed, 12 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index e021d3e..f12a5d7 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2020-04-16 Tom de Vries <tdevries@suse.de> + + * gdb.base/maint-expand-symbols-header-file.exp: Set language before + loading exec. + 2020-04-15 Andrew Burgess <andrew.burgess@embecosm.com> * gdb.base/many-completions.exp: New file. diff --git a/gdb/testsuite/gdb.base/maint-expand-symbols-header-file.exp b/gdb/testsuite/gdb.base/maint-expand-symbols-header-file.exp index f73be40..05802b2 100644 --- a/gdb/testsuite/gdb.base/maint-expand-symbols-header-file.exp +++ b/gdb/testsuite/gdb.base/maint-expand-symbols-header-file.exp @@ -18,10 +18,16 @@ standard_testfile .c -if {[prepare_for_testing "failed to prepare" $testfile \ +if {[build_executable "failed to prepare" $testfile \ $srcfile {debug nowarnings}]} { return -1 } +clean_restart + +# Make sure that no symtabs are expanded, by setting language before +# loading exec. +gdb_test_no_output "set language c" +gdb_load ${binfile} set test "verify no symtabs are expanded" if { [readnow] } { |