aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2021-10-08 12:30:35 +0200
committerTom de Vries <tdevries@suse.de>2021-10-08 12:30:35 +0200
commit8320b042306349336ac2441897401748c2674d6a (patch)
tree0fca923a3ac58042e891d00d69a17b017ad28df1
parentb80e6295f6e456a1f94ac8b27493ef9f6290bde4 (diff)
downloadbinutils-8320b042306349336ac2441897401748c2674d6a.zip
binutils-8320b042306349336ac2441897401748c2674d6a.tar.gz
binutils-8320b042306349336ac2441897401748c2674d6a.tar.bz2
[gdb/testsuite] Fix gdb.base/bt-on-error-and-warning.exp with check-read1
When running test-case gdb.base/bt-on-error-and-warning.exp with check-read1, I run into: ... (gdb) maint internal-error foobar^M src/gdb/maint.c:82: internal-error: foobar^M A problem internal to GDB has been detectedFAIL: \ gdb.base/bt-on-error-and-warning.exp: problem=internal-error, mode=on: \ scan for backtrace (GDB internal error) Resyncing due to internal error. ,^M ... The corresponding gdb_test_multiple in the test-case contains: ... -early -re "^A problem internal to GDB has been detected,\r\n" { incr header_lines exp_continue } ... but instead this one triggers in gdb_test_multiple: ... -re ".*A problem internal to GDB has been detected" { fail "$message (GDB internal error)" gdb_internal_error_resync set result -1 } ... Fix this by likewise shortening the regexp to before the comma. Tested on x86_64-linux.
-rw-r--r--gdb/testsuite/gdb.base/bt-on-error-and-warning.exp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.base/bt-on-error-and-warning.exp b/gdb/testsuite/gdb.base/bt-on-error-and-warning.exp
index a43a951..5ec1311 100644
--- a/gdb/testsuite/gdb.base/bt-on-error-and-warning.exp
+++ b/gdb/testsuite/gdb.base/bt-on-error-and-warning.exp
@@ -70,11 +70,11 @@ proc run_test {problem_type mode} {
incr header_lines
exp_continue
}
- -early -re "^A problem internal to GDB has been detected,\r\n" {
+ -early -re "^A problem internal to GDB has been detected" {
incr header_lines
exp_continue
}
- -early -re "^further debugging may prove unreliable\\.\r\n" {
+ -early -re "^,\r\nfurther debugging may prove unreliable\\.\r\n" {
incr header_lines
exp_continue
}