* gdb.base/selftest.exp (do_stes_and_next): Skip calls to
setlocale, bindtextdomain and textdomain.
This commit is contained in:
parent
06a6ac572a
commit
8cf8c2b853
@ -1,3 +1,8 @@
|
|||||||
|
2002-06-22 Andrew Cagney <ac131313@redhat.com>
|
||||||
|
|
||||||
|
* gdb.base/selftest.exp (do_stes_and_next): Skip calls to
|
||||||
|
setlocale, bindtextdomain and textdomain.
|
||||||
|
|
||||||
2002-06-11 Jim Blandy <jimb@redhat.com>
|
2002-06-11 Jim Blandy <jimb@redhat.com>
|
||||||
|
|
||||||
* lib/gdb.exp (get_debug_format): Tolerate message saying whether
|
* lib/gdb.exp (get_debug_format): Tolerate message saying whether
|
||||||
|
@ -52,7 +52,7 @@ proc do_steps_and_nexts {} {
|
|||||||
|
|
||||||
gdb_reinitialize_dir $srcdir/..
|
gdb_reinitialize_dir $srcdir/..
|
||||||
|
|
||||||
for {set count 0} {$count < 22} {incr count} {
|
for {set count 0} {$count < 26} {incr count} {
|
||||||
send_gdb "list\n"
|
send_gdb "list\n"
|
||||||
gdb_expect {
|
gdb_expect {
|
||||||
-re ".*context = data.*$gdb_prompt $" {
|
-re ".*context = data.*$gdb_prompt $" {
|
||||||
@ -142,6 +142,22 @@ proc do_steps_and_nexts {} {
|
|||||||
-re ".*dirarg = .* xmalloc.*$gdb_prompt $" {
|
-re ".*dirarg = .* xmalloc.*$gdb_prompt $" {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
-re ".*setlocale .LC_MESSAGES,.*$gdb_prompt $" {
|
||||||
|
set description "next over setlocale LC_MESSAGES"
|
||||||
|
set command "next"
|
||||||
|
}
|
||||||
|
-re ".*setlocale .LC_CTYPE,.*$gdb_prompt $" {
|
||||||
|
set description "next over setlocale LC_CTYPE"
|
||||||
|
set command "next"
|
||||||
|
}
|
||||||
|
-re ".*bindtextdomain .PACKAGE, LOCALEDIR.;.*$gdb_prompt $" {
|
||||||
|
set description "next over bindtextdomain"
|
||||||
|
set command "next"
|
||||||
|
}
|
||||||
|
-re ".*textdomain .PACKAGE.;.*$gdb_prompt $" {
|
||||||
|
set description "next over textdomain PACKAGE"
|
||||||
|
set command "next"
|
||||||
|
}
|
||||||
-re "\[ \t\]+\{\r\n$gdb_prompt $" {
|
-re "\[ \t\]+\{\r\n$gdb_prompt $" {
|
||||||
setup_xfail "mips-*-irix5*"
|
setup_xfail "mips-*-irix5*"
|
||||||
fail "$description ended up at odd location"
|
fail "$description ended up at odd location"
|
||||||
|
Loading…
Reference in New Issue
Block a user