aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2022-09-30 06:04:56 +0200
committerTom de Vries <tdevries@suse.de>2022-09-30 06:04:56 +0200
commit1d4c108cec2b50bde92d269c34b79d0d19949630 (patch)
tree00554481926cb13b8fee0a1a71b54f20448ed6ce /gdb
parentd6b99a80716d2f0e21baae97a8653204dd354ad3 (diff)
downloadfsf-binutils-gdb-1d4c108cec2b50bde92d269c34b79d0d19949630.zip
fsf-binutils-gdb-1d4c108cec2b50bde92d269c34b79d0d19949630.tar.gz
fsf-binutils-gdb-1d4c108cec2b50bde92d269c34b79d0d19949630.tar.bz2
[gdb/testsuite] Fix gdb.mi/mi-sym-info.exp on openSUSE Tumbleweed
On openSUSE Tumbleweed, I run into: ... FAIL: gdb.mi/mi-sym-info.exp: List all functions from debug information only ... The problem is in matching this string: ... {name="_start",type="void (void)",description="void _start(void);"} ... using regexp fun_re, which requires a line field: ... set fun_re \ "\{line=\"$decimal\",name=${qstr},type=${qstr},description=${qstr}\}" ... Fix this by making the line field optional in fun_re. Tested on x86_64-linux.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/gdb.mi/mi-sym-info.exp3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.mi/mi-sym-info.exp b/gdb/testsuite/gdb.mi/mi-sym-info.exp
index 7b93606..2f723ec 100644
--- a/gdb/testsuite/gdb.mi/mi-sym-info.exp
+++ b/gdb/testsuite/gdb.mi/mi-sym-info.exp
@@ -38,7 +38,8 @@ mi_clean_restart $binfile
mi_runto_main
set qstr "\"\[^\"\]+\""
-set fun_re "\{line=\"$decimal\",name=${qstr},type=${qstr},description=${qstr}\}"
+set fun_re \
+ "\{(?:line=\"$decimal\",)?name=${qstr},type=${qstr},description=${qstr}\}"
set type_re "\{(?:line=\"$decimal\",)*name=${qstr}\}"
set sym_list "\\\[${fun_re}(?:,$fun_re)*\\\]"
set type_sym_list "\\\[${type_re}(?:,$type_re)*\\\]"