diff options
author | Daniel Jacobowitz <drow@false.org> | 2005-06-13 16:15:40 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2005-06-13 16:15:40 +0000 |
commit | c1bd25fd1de1bc9e80bf95feb670c26be62c833b (patch) | |
tree | 040f83c9ea28a54f68672022b0a04975c5b9c37c /gdb/testsuite/gdb.base/relocate.exp | |
parent | 37f6032b8594c94b585732cf7ae09affe8614eee (diff) | |
download | binutils-gdb-c1bd25fd1de1bc9e80bf95feb670c26be62c833b.tar.gz |
gdb/
* Makefile.in (symfile.o): Add $(exec_h).
* exec.h (exec_set_section_address): Add prototype.
* exec.c (exec_set_section_address): New function.
* symfile.c: Include "exec.h".
(struct place_section_arg, place_section): New.
(default_symfile_offsets): Call place_section for each
section of a relocatable file.
gdb/testsuite/
* gdb.base/relocate.c: Add a copyright notice.
(dummy): Remove.
* gdb.base/relocate.exp: Test printing the values of variables
from a relocatable file.
Diffstat (limited to 'gdb/testsuite/gdb.base/relocate.exp')
-rw-r--r-- | gdb/testsuite/gdb.base/relocate.exp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.base/relocate.exp b/gdb/testsuite/gdb.base/relocate.exp index 916ce1ce41c..13ea62aa824 100644 --- a/gdb/testsuite/gdb.base/relocate.exp +++ b/gdb/testsuite/gdb.base/relocate.exp @@ -1,4 +1,4 @@ -# Copyright 2002, 2003 Free Software Foundation, Inc. +# Copyright 2002, 2003, 2005 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -131,4 +131,16 @@ if { "${function_foo_addr}" == "${new_function_foo_addr}" } { pass "function foo has a different address" } -return 0 +# Now try loading the object as an exec-file; we should be able to print +# the values of variables after we do this. + +gdb_exit +gdb_start +gdb_reinitialize_dir $srcdir/$subdir +gdb_load ${binfile} + +# Check the values of the variables. +gdb_test "print static_foo" "\\\$$decimal = 1" +gdb_test "print static_bar" "\\\$$decimal = 2" +gdb_test "print global_foo" "\\\$$decimal = 3" +gdb_test "print global_bar" "\\\$$decimal = 4" |