mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-01 13:26:47 +08:00
PowerPC fix for gdb.server/sysroot.exp
On PowerPC, the stop in the printf function is of the form: Breakpoint 2, 0x00007ffff7c6ab08 in printf@@GLIBC_2.17 () from /lib64/libc.so.6 On other architectures the output looks like: Breakpoint 2, 0x0000007fb7ea29ac in printf () from /lib/aarch64-linux-gnu/libc.so.6 The following patch modifies the printf test by matchine any character starting immediately after the printf. The test now works for PowerPC output as well as the output from other architectures. The test has been run on a Power 10 system and and Intel x86_64 system.
This commit is contained in:
parent
d11c7afad3
commit
29004660c9
@ -78,7 +78,7 @@ foreach_with_prefix sysroot { "local" "remote" } {
|
||||
|
||||
# Test that we can stop inside a library.
|
||||
gdb_breakpoint printf
|
||||
gdb_test "continue" "Breakpoint $decimal.* (__)?printf .*" \
|
||||
gdb_test "continue" "Breakpoint $decimal.* (__)?printf.*" \
|
||||
"continue to printf"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user