From a25d69c6dcbabf3f6629b847246ffb4ddbc29472 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Tue, 21 Nov 2017 16:04:42 +0000 Subject: [PATCH] gdb.ada/minsyms.exp: Don't hardcode the variable's address This new testcase has a test that fails like this here: $1 = ( *) 0x60208c (gdb) FAIL: gdb.ada/minsyms.exp: print &some_minsym The problem is that the testcase hardcodes an expected address for the "some_minsym" variable, which obviously isn't stable. Fix that by expecting $hex instead. gdb/testsuite/ChangeLog: 2017-11-21 Pedro Alves * gdb.ada/minsyms.exp: Accept any address for 'some_minsym'. --- gdb/testsuite/ChangeLog | 4 ++++ gdb/testsuite/gdb.ada/minsyms.exp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index fa329b4..16d2801 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2017-11-21 Pedro Alves + + * gdb.ada/minsyms.exp: Accept any address for 'some_minsym'. + 2017-11-20 Pedro Alves * gdb.base/whatis-ptype-typedefs.c (double_typedef) diff --git a/gdb/testsuite/gdb.ada/minsyms.exp b/gdb/testsuite/gdb.ada/minsyms.exp index 2c91125..9878f9f 100644 --- a/gdb/testsuite/gdb.ada/minsyms.exp +++ b/gdb/testsuite/gdb.ada/minsyms.exp @@ -35,7 +35,7 @@ gdb_test "print integer(some_minsym)" \ " = 1234" gdb_test "print &some_minsym" \ - " = \\(access \\) 0x62c2f8 " + " = \\(access \\) $hex " gdb_test "print /x integer(&some_minsym)" \ " = $hex" -- 2.7.4