From: drow Date: Thu, 4 Jan 2007 20:42:24 +0000 (+0000) Subject: * gdb.base/charset.exp: Add explicit filename to break. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0ab7cc622ed07827bea8186ce27a06f41cc63a16;p=pf3gnuchains%2Fpf3gnuchains3x.git * gdb.base/charset.exp: Add explicit filename to break. * gdb.base/dbx.exp: Add explicit filename to breaks. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 1738cb640b..2ee358fbaa 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2007-01-04 Pedro Alves + * gdb.base/charset.exp: Add explicit filename to break. + * gdb.base/dbx.exp: Add explicit filename to breaks. + +2007-01-04 Pedro Alves + * gdb.mi/mi-file.exp: Use mi_gdb_file_cmd instead of mi_gdb_load. * gdb.mi/mi2-file.exp: Likewise. diff --git a/gdb/testsuite/gdb.base/charset.exp b/gdb/testsuite/gdb.base/charset.exp index 212f3b3c50..e5d8dfb9c2 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 [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 diff --git a/gdb/testsuite/gdb.base/dbx.exp b/gdb/testsuite/gdb.base/dbx.exp index 98f448192f..d2ebd57924 100644 --- a/gdb/testsuite/gdb.base/dbx.exp +++ b/gdb/testsuite/gdb.base/dbx.exp @@ -266,8 +266,8 @@ proc gdb_file_cmd {arg} { proc test_breakpoints { } { gdb_test "stop in main" "Breakpoint.*at.*: file.*average\.c, line 38\." gdb_test "status" "Num.*Type.*Disp.*Enb.*Address.*What\r\n1\[ \r\]+breakpoint\[ \r\]+keep y.*in main at.*average\.c:38.*" - gdb_test "stop at 43" "Breakpoint.*at.*: file.*average\.c, line 43.*" - gdb_test "stop in 43" "Usage: stop in " + gdb_test "stop at average.c:43" "Breakpoint.*at.*: file.*average\.c, line 43.*" + gdb_test "stop in average.c:43" "Usage: stop in " gdb_test "stop at main" "Usage: stop at " }