aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2022-06-14 00:26:46 +0200
committerTom de Vries <tdevries@suse.de>2022-06-14 00:26:46 +0200
commitc2ac533e98438df5e5c2c58cce104c927ad42d09 (patch)
treeace1bf2cd65239f2cf1b7bcca0accc28479ac09a /gdb
parentc722093960edc1291df0a19ab0136fdb8934bdc2 (diff)
downloadgdb-c2ac533e98438df5e5c2c58cce104c927ad42d09.zip
gdb-c2ac533e98438df5e5c2c58cce104c927ad42d09.tar.gz
gdb-c2ac533e98438df5e5c2c58cce104c927ad42d09.tar.bz2
[gdb/testsuite] Fix gdb.reverse/test_ioctl_TCSETSW.exp with libc debuginfo
When running test-case gdb.reverse/test_ioctl_TCSETSW.exp with glibc debuginfo installed, I run into: ... (gdb) PASS: gdb.reverse/test_ioctl_TCSETSW.exp: at TCSETSW call step^M __tcsetattr (fd=0, optional_actions=1, termios_p=0x7fffffffcf50) at \ ../sysdeps/unix/sysv/linux/tcsetattr.c:45^M 45 {^M (gdb) FAIL: gdb.reverse/test_ioctl_TCSETSW.exp: handle TCSETSW ... The problem is that the step is expected to step over the call to tcsetattr, but due to glibc debuginfo being installed, we step into the call. Fix this by using next instead of step. Tested on x86_64-linux.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/gdb.reverse/test_ioctl_TCSETSW.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.reverse/test_ioctl_TCSETSW.exp b/gdb/testsuite/gdb.reverse/test_ioctl_TCSETSW.exp
index 86a62eb..4a81a61 100644
--- a/gdb/testsuite/gdb.reverse/test_ioctl_TCSETSW.exp
+++ b/gdb/testsuite/gdb.reverse/test_ioctl_TCSETSW.exp
@@ -35,7 +35,7 @@ gdb_test "break $stop" ".*Breakpoint .*" "stop at TCSETSW"
gdb_test "continue" ".*Breakpoint .*" "at TCSETSW call"
set test "handle TCSETSW"
-gdb_test_multiple "step" $test {
+gdb_test_multiple "next" $test {
-re "Process record and replay target doesn't support ioctl request 0x.*$gdb_prompt $" {
fail $test
}