diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-06-22 18:32:38 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-06-22 18:32:38 +0000 |
commit | 2f816dda058ffc471cad62e158671418c247bef0 (patch) | |
tree | d833dd1a9b6af9693c5b5d55eda62924d209f7ee | |
parent | 261de1663a28d9f2a13f09a8f436d21c62634132 (diff) | |
download | gdb-2f816dda058ffc471cad62e158671418c247bef0.zip gdb-2f816dda058ffc471cad62e158671418c247bef0.tar.gz gdb-2f816dda058ffc471cad62e158671418c247bef0.tar.bz2 |
* gdb.base/relocate.exp: Test add-symbol-file with a variable
offset.
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/relocate.exp | 26 |
2 files changed, 31 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index bc29524..8a1a411 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2003-06-22 Daniel Jacobowitz <drow@mvista.com> + * gdb.base/relocate.exp: Test add-symbol-file with a variable + offset. + +2003-06-22 Daniel Jacobowitz <drow@mvista.com> + * gdb.c++/pr-1210.cc: New file. * gdb.c++/pr-1210.exp: New file. diff --git a/gdb/testsuite/gdb.base/relocate.exp b/gdb/testsuite/gdb.base/relocate.exp index bcaa48a..8d8ff90 100644 --- a/gdb/testsuite/gdb.base/relocate.exp +++ b/gdb/testsuite/gdb.base/relocate.exp @@ -105,4 +105,30 @@ if { "${function_foo_addr}" == "${function_bar_addr}" } { pass "functions have different addresses" } +# Now use a variable as an offset to add-symbol-file, and check that +# the functions' addresses change. + +gdb_exit +gdb_start +gdb_reinitialize_dir $srcdir/$subdir + +gdb_test "set \$offset = 0x10000" "" + +# Load the object file. +gdb_test "add-symbol-file ${binfile} \$offset" \ + "Reading symbols from .*${testfile}\\.o\\.\\.\\.done\\." \ + "add-symbol-file ${testfile}.o \$offset" \ + "add symbol table from file \".*${testfile}\\.o\" at\[ \t\r\n\]+\.text_addr = 0x10000\[\r\n\]+\\(y or n\\) " \ + "y" + +# Print the addresses of functions. +set new_function_foo_addr [get_var_address function_foo] + +# Make sure they have different addresses. +if { "${function_foo_addr}" == "${new_function_foo_addr}" } { + fail "function foo has a different address" +} else { + pass "function foo has a different address" +} + return 0 |