diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2006-06-12 08:01:54 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2006-06-12 08:01:54 +0000 |
commit | 12d543b02def209057d7088bfd851cff024e168d (patch) | |
tree | e3909a884a20917d821bba10cc6120f0d2063424 | |
parent | b947bb69e1b37816af0fb80d49641017d856c57a (diff) | |
download | fsf-binutils-gdb-12d543b02def209057d7088bfd851cff024e168d.zip fsf-binutils-gdb-12d543b02def209057d7088bfd851cff024e168d.tar.gz fsf-binutils-gdb-12d543b02def209057d7088bfd851cff024e168d.tar.bz2 |
gdb/
* m68k-tdep.c (m68k_frame_align): Say which archs need alignment.
gdb/testsuite/
* gdb.base/charset.exp: Use ${srcfile}.
-rw-r--r-- | ChangeLog.csl | 13 | ||||
-rw-r--r-- | gdb/m68k-tdep.c | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/charset.exp | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl index aace2cc..304577d 100644 --- a/ChangeLog.csl +++ b/ChangeLog.csl @@ -1,3 +1,11 @@ +2006-06-12 Nathan Sidwell <nathan@codesourcery.com> + + gdb/ + * m68k-tdep.c (m68k_frame_align): Say which archs need alignment. + + gdb/testsuite/ + * gdb.base/charset.exp: Use ${srcfile}. + 2006-06-10 Daniel Jacobowitz <dan@codesourcery.com> Issue #669 @@ -8,6 +16,11 @@ 2006-06-09 Nathan Sidwell <nathan@codesourcery.com> gdb/testsuite/ + * gdb.base/auxv.exp: Skip if bare_board + * gdb.base/gdb1555.exp: Likewise. + * gdb.base/start.exp: Skip if use_gdb_stub. + + gdb/testsuite/ * gdb.base/recurse.exp: Add gdb,hardware_watchpoint target info. Adjust testing to cope with a single watchpoint. * gdb.base/watchpoint.exp: Adjust expected string. diff --git a/gdb/m68k-tdep.c b/gdb/m68k-tdep.c index 4bc7e86..495523a 100644 --- a/gdb/m68k-tdep.c +++ b/gdb/m68k-tdep.c @@ -486,7 +486,7 @@ m68k_svr4_return_value (struct gdbarch *gdbarch, struct type *type, /* Always align the frame to a 4-byte boundary. This is required on - some platforms and harmless on the rest. */ + Coldfire cores and harmless on the others. */ static CORE_ADDR m68k_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp) diff --git a/gdb/testsuite/gdb.base/charset.exp b/gdb/testsuite/gdb.base/charset.exp index 110b6be..e5d8dfb 100644 --- a/gdb/testsuite/gdb.base/charset.exp +++ b/gdb/testsuite/gdb.base/charset.exp @@ -388,7 +388,7 @@ foreach host_charset [all_charset_names] { # some strings in various target character sets. We need to run the # test program to the point at which the strings have been # initialized. -gdb_test "break charset.c:[gdb_get_line_number "all strings initialized"]" \ +gdb_test "break ${srcfile}:[gdb_get_line_number "all strings initialized"]" \ ".*Breakpoint.* at .*" \ "set breakpoint after all strings have been initialized" gdb_run_cmd |