2002-04-12 Michael Snyder <msnyder@redhat.com>

From Jim Blandy  <jimb@redhat.com>
        * gdb.base/foo.c (foox): Remove section attribute; the linker
	script can handle this instead.
	* gdb.base/bar.c (barx): Same.
	* gdb.base/baz.c (bazx): Same.
	* gdb.base/grbx.c (grbxx): Same.

        * gdb.base/overlays.exp: New test: check that GDB's manual overlay
	manager doesn't automatically unmap overlays unnecessarily.
This commit is contained in:
Michael Snyder 2002-04-13 00:21:40 +00:00
parent 694f61fb27
commit ffd61a589b
6 changed files with 51 additions and 4 deletions

View File

@ -1,3 +1,14 @@
2002-04-12 Michael Snyder <msnyder@redhat.com>
From Jim Blandy <jimb@redhat.com>
* gdb.base/foo.c (foox): Remove section attribute; the linker
script can handle this instead.
* gdb.base/bar.c (barx): Same.
* gdb.base/baz.c (bazx): Same.
* gdb.base/grbx.c (grbxx): Same.
* gdb.base/overlays.exp: New test: check that GDB's manual overlay
manager doesn't automatically unmap overlays unnecessarily.
2002-04-10 Martin M. Hunt <hunt@redhat.com>
* gdb.base/ending-run.exp: Fix pattern for Mips targets

View File

@ -1,4 +1,4 @@
static int barx __attribute__ ((section (".data01"))) = 'b' + 'a' + 'r';
static int barx = 'b' + 'a' + 'r';
int bar (int x)
{

View File

@ -1,4 +1,4 @@
static int bazx __attribute__ ((section (".data02"))) = 'b' + 'a' + 'z';
static int bazx = 'b' + 'a' + 'z';
int baz (int x)
{

View File

@ -1,4 +1,4 @@
static int foox __attribute__ ((section (".data00"))) = 'f' + 'o' + 'o';
static int foox = 'f' + 'o' + 'o';
int foo (int x)
{

View File

@ -1,4 +1,4 @@
static int grbxx __attribute__ ((section (".data03"))) = 'g' + 'r' + 'b' + 'x';
static int grbxx = 'g' + 'r' + 'b' + 'x';
int grbx (int x)
{

View File

@ -178,6 +178,42 @@ gdb_expect {
timeout { fail "(timeout) Automatic unmapping" }
}
# Verify that both sec1 and sec2 can be loaded simultaneously.
proc simultaneous_pair { sec1 sec2 } {
global gdb_prompt
set pairname "$sec1 and $sec2 mapped simultaneously"
gdb_test "overlay map $sec1" "" "$pairname: map $sec1"
gdb_test "overlay map $sec2" "" "$pairname: map $sec2"
set seen_sec1 0
set seen_sec2 0
send_gdb "overlay list\n"
gdb_expect {
-re ".*[string_to_regexp $sec1], " { set seen_sec1 1; exp_continue }
-re ".*[string_to_regexp $sec2], " { set seen_sec2 1; exp_continue }
-re ".*$gdb_prompt $" {
if {$seen_sec1 && $seen_sec2} {
pass "$pairname"
} else {
fail "$pairname"
}
}
timeout { fail "(timeout) $pairname" }
}
}
simultaneous_pair .ovly0 .ovly2
simultaneous_pair .ovly0 .ovly3
simultaneous_pair .ovly1 .ovly2
simultaneous_pair .ovly1 .ovly3
simultaneous_pair .data00 .data02
simultaneous_pair .data00 .data03
simultaneous_pair .data01 .data02
simultaneous_pair .data01 .data03
# test automatic mode
gdb_test "overlay auto" ""