]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/testsuite/ChangeLog
[gdb/testsuite] Fix gdb.base/sect-cmd.exp
authorTom de Vries <tdevries@suse.de>
Tue, 8 Jun 2021 08:04:44 +0000 (10:04 +0200)
committerTom de Vries <tdevries@suse.de>
Tue, 8 Jun 2021 08:04:44 +0000 (10:04 +0200)
commit25ff4de715741c889efba6340cc3c508113ed2f2
treeb8c5c423cd480f7b0494564b829d874e8122e3a9
parenta55b92be28bab98a2acae597cbd365eb53b5faf3
[gdb/testsuite] Fix gdb.base/sect-cmd.exp

With a testsuite setup modified to make expect wait a little bit longer for
gdb output (see PR27957), I reliably run into:
...
(gdb) FAIL: gdb.base/sect-cmd.exp: set section .text to original \
  address (timeout)
...

The problem is a too greedy regexp:
...
       -re ".*$address1 \- $address2 is $section_name.*" {
...
which ends up consuming the gdb prompt with the terminating ".*".

Fix this by limiting the regexp to a single line.

Tested on x86_64-linux.

gdb/testsuite/ChangeLog:

2021-06-08  Tom de Vries  <tdevries@suse.de>

* gdb.base/sect-cmd.exp: Fix saw_section_address_line regexp.
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/sect-cmd.exp