mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
[gdb/testsuite] Handle removed valgrind option --db-attach
When running valgrind-db-attach.exp with valgrind version 3.13.0, we get: ... PASS: gdb.base/valgrind-db-attach.exp: spawn valgrind valgrind: Unknown option: --db-attach=yes valgrind: Use --help for more information or consult the user manual. ERROR: Process no longer exists UNRESOLVED: gdb.base/valgrind-db-attach.exp: valgrind started ... The valgrind option --db-attach has been deprecated in version 3.10.0, and removed in version 3.11.0. Fix valgrind-db-attach.exp to replace the ERROR/UNRESOLVED with: ... UNSUPPORTED: gdb.base/valgrind-db-attach.exp: valgrind started ... Tested on x86_64-linux. 2018-10-24 Tom de Vries <tdevries@suse.de> * gdb.base/valgrind-db-attach.exp: Handle removed support for --db-attach in valgrind.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2018-10-24 Tom de Vries <tdevries@suse.de>
|
||||||
|
|
||||||
|
* gdb.base/valgrind-db-attach.exp: Handle removed support for
|
||||||
|
--db-attach in valgrind.
|
||||||
|
|
||||||
2018-10-23 Andrew Burgess <andrew.burgess@embecosm.com>
|
2018-10-23 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||||
|
|
||||||
* gdb.arch/riscv-reg-aliases.c: New file.
|
* gdb.arch/riscv-reg-aliases.c: New file.
|
||||||
|
@ -51,6 +51,10 @@ set use_gdb_stub 1
|
|||||||
set test "valgrind started"
|
set test "valgrind started"
|
||||||
# The trailing '.' differs for different memcheck versions.
|
# The trailing '.' differs for different memcheck versions.
|
||||||
gdb_test_multiple "" $test {
|
gdb_test_multiple "" $test {
|
||||||
|
-re "valgrind: Unknown option: --db-attach=yes" {
|
||||||
|
unsupported $test
|
||||||
|
return -1
|
||||||
|
}
|
||||||
-re "Memcheck, a memory error detector\\.?\r\n" {
|
-re "Memcheck, a memory error detector\\.?\r\n" {
|
||||||
pass $test
|
pass $test
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user