* gdb.ada/int_deref.exp: Convert the addresses into long_integer

rather than integer, as integer might not be big enough when
        on 64bit targets.
This commit is contained in:
Joel Brobecker 2008-11-28 23:26:54 +00:00
parent 8d90eea314
commit 67f0aac52a
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2008-11-28 Joel Brobecker <brobecker@adacore.com>
* gdb.ada/int_deref.exp: Convert the addresses into long_integer
rather than integer, as integer might not be big enough when
on 64bit targets.
2008-11-27 Jerome Guitton <guitton@adacore.com>
* gdb.cp/formatted-ref.exp: Add equality test.

View File

@ -37,9 +37,9 @@ gdb_load ${binfile}
set bp_location [gdb_get_line_number "Pck.Watch" ${testdir}/foo.adb]
runto "foo.adb:$bp_location"
gdb_test "print *integer(watch'address)" \
gdb_test "print *long_integer(watch'address)" \
" = 4874"
gdb_test "print integer(watch'address).all" \
gdb_test "print long_integer(watch'address).all" \
" = 4874"