summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2008-11-14 06:55:40 +0000
committerDoug Evans <dje@google.com>2008-11-14 06:55:40 +0000
commit74d79707f40389a05871d03cd15317133499499a (patch)
treef7e570eb0da66387eacfa45bcca4dd10132de149
parent88265ac9d34f5b1ec2f47ca904b90fcae20f9d38 (diff)
downloadgdb-74d79707f40389a05871d03cd15317133499499a.tar.gz
(set_lang_c): Delete.
(runto_main): If it fails, call fail instead of gdb_suppress_tests.
-rw-r--r--gdb/testsuite/gdb.base/callexit.exp38
1 files changed, 3 insertions, 35 deletions
diff --git a/gdb/testsuite/gdb.base/callexit.exp b/gdb/testsuite/gdb.base/callexit.exp
index 6d4149be3f9..a794b83becc 100644
--- a/gdb/testsuite/gdb.base/callexit.exp
+++ b/gdb/testsuite/gdb.base/callexit.exp
@@ -37,35 +37,6 @@ if [target_info exists gdb,cannot_call_functions] {
continue
}
-# Set the current language to C. This counts as a test. If it
-# fails, then we skip the other tests.
-
-proc set_lang_c {} {
- global gdb_prompt
-
- send_gdb "set language c\n"
- gdb_expect {
- -re ".*$gdb_prompt $" {}
- timeout { fail "set language c (timeout)" ; return 0; }
- }
-
- send_gdb "show language\n"
- gdb_expect {
- -re ".* source language is \"c\".*$gdb_prompt $" {
- pass "set language to \"c\""
- return 1
- }
- -re ".*$gdb_prompt $" {
- fail "setting language to \"c\""
- return 0
- }
- timeout {
- fail "can't show language (timeout)"
- return 0
- }
- }
-}
-
# Start with a fresh gdb.
gdb_exit
@@ -73,12 +44,9 @@ gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
-if { ![set_lang_c] } {
- gdb_suppress_tests;
-} else {
- if { ![runto_main] } {
- gdb_suppress_tests;
- }
+if { ![runto_main] } {
+ fail "Can't run to main"
+ return 0
}
# Call function (causing the program to exit), and see if gdb handles