aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-06-22 22:19:37 +0000
committerAndrew Cagney <cagney@redhat.com>2002-06-22 22:19:37 +0000
commit8cf8c2b85371da2851c47362a891c2d832c93188 (patch)
treec42737e964c701aa6b16e785d36581536c966b8e /gdb/testsuite/gdb.base
parent06a6ac572a66e992045e35d0ec2e08321dbaa0e1 (diff)
downloadgdb-8cf8c2b85371da2851c47362a891c2d832c93188.zip
gdb-8cf8c2b85371da2851c47362a891c2d832c93188.tar.gz
gdb-8cf8c2b85371da2851c47362a891c2d832c93188.tar.bz2
* gdb.base/selftest.exp (do_stes_and_next): Skip calls to
setlocale, bindtextdomain and textdomain.
Diffstat (limited to 'gdb/testsuite/gdb.base')
-rw-r--r--gdb/testsuite/gdb.base/selftest.exp18
1 files changed, 17 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.base/selftest.exp b/gdb/testsuite/gdb.base/selftest.exp
index 83ceb62..85e9fa7 100644
--- a/gdb/testsuite/gdb.base/selftest.exp
+++ b/gdb/testsuite/gdb.base/selftest.exp
@@ -52,7 +52,7 @@ proc do_steps_and_nexts {} {
gdb_reinitialize_dir $srcdir/..
- for {set count 0} {$count < 22} {incr count} {
+ for {set count 0} {$count < 26} {incr count} {
send_gdb "list\n"
gdb_expect {
-re ".*context = data.*$gdb_prompt $" {
@@ -142,6 +142,22 @@ proc do_steps_and_nexts {} {
-re ".*dirarg = .* xmalloc.*$gdb_prompt $" {
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 $" {
setup_xfail "mips-*-irix5*"
fail "$description ended up at odd location"