2016-01-01 04:33:14 +00:00
|
|
|
# Copyright 2000-2016 Free Software Foundation, Inc.
|
2000-12-08 19:30:32 +00:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-08-23 18:14:19 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2000-12-08 19:30:32 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2000-12-08 19:30:32 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2000-12-08 19:30:32 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2000-12-08 19:30:32 +00:00
|
|
|
|
|
|
|
# This file was written by Michael Snyder (msnyder@redhat.com)
|
|
|
|
|
|
|
|
|
|
|
|
# re-use the program from the "return2" test.
|
2009-07-13 19:20:39 +00:00
|
|
|
if { [prepare_for_testing finish.exp finish return2.c] } {
|
|
|
|
return -1
|
2000-12-08 19:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
proc finish_1 { type } {
|
|
|
|
global gdb_prompt
|
|
|
|
|
|
|
|
gdb_test "break ${type}_func" "Breakpoint \[0123456789\].*" \
|
|
|
|
"set break on ${type}_func"
|
|
|
|
gdb_test "continue" "Breakpoint.* ${type}_func.*" \
|
|
|
|
"continue to ${type}_func"
|
2010-05-24 22:06:59 +00:00
|
|
|
gdb_test_multiple "finish" "finish from ${type}_func" {
|
2000-12-22 01:49:46 +00:00
|
|
|
-re ".*Value returned is .* = 49 '1'\r\n$gdb_prompt $" {
|
2000-12-08 19:30:32 +00:00
|
|
|
if { $type == "char" } {
|
|
|
|
pass "finish from char_func"
|
|
|
|
} else {
|
2000-12-22 01:49:46 +00:00
|
|
|
fail "finish from ${type}_func"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
-re ".*Value returned is .* = \[0123456789\]* '1'\r\n$gdb_prompt $" {
|
|
|
|
if { $type == "char" } {
|
|
|
|
pass "finish from char_func (non-ASCII char set?)"
|
|
|
|
} else {
|
|
|
|
fail "finish from ${type}_func"
|
2000-12-08 19:30:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
-re ".*Value returned is .* = 1\r\n$gdb_prompt $" {
|
|
|
|
pass "finish from ${type}_func"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc finish_void { } {
|
|
|
|
global gdb_prompt
|
|
|
|
|
|
|
|
gdb_test "break void_func" "Breakpoint \[0123456789\].*" \
|
|
|
|
"set break on void_func"
|
|
|
|
gdb_test "continue" "Breakpoint.* void_func.*" \
|
|
|
|
"continue to void_func"
|
2001-05-22 00:25:27 +00:00
|
|
|
# Some architectures will have one or more instructions after the
|
|
|
|
# call instruction which still is part of the call sequence, so we
|
|
|
|
# must be prepared for a "finish" to show us the void_func call
|
|
|
|
# again as well as the statement after.
|
2010-05-24 22:06:59 +00:00
|
|
|
gdb_test_multiple "finish" "finish from void_func" {
|
2000-12-08 19:30:32 +00:00
|
|
|
-re ".*void_checkpoint.*$gdb_prompt $" {
|
|
|
|
pass "finish from void_func"
|
|
|
|
}
|
2001-05-24 01:14:15 +00:00
|
|
|
-re "0x\[0-9a-fA-F\]+ in main.*call to void_func.*$gdb_prompt $" {
|
2001-05-22 00:25:27 +00:00
|
|
|
pass "finish from void_func"
|
|
|
|
}
|
2000-12-08 19:30:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-21 17:55:22 +00:00
|
|
|
# A function that tests that the given ABBREV is a working abbreviation
|
|
|
|
# of the "finish" command.
|
|
|
|
|
|
|
|
proc finish_abbreviation { abbrev } {
|
|
|
|
|
|
|
|
if { ! [ runto "int_func" ] } then {
|
|
|
|
fail "running to int_func"
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test "$abbrev" \
|
|
|
|
"Value returned is .* = 1" \
|
|
|
|
"Testing the \"$abbrev\" abbreviation for \"finish\""
|
|
|
|
}
|
|
|
|
|
2000-12-08 19:30:32 +00:00
|
|
|
proc finish_tests { } {
|
|
|
|
global gdb_prompt
|
|
|
|
|
2004-02-02 05:15:27 +00:00
|
|
|
if { ! [ runto_main ] } then {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested finish.exp
|
|
|
|
return -1
|
2000-12-08 19:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
finish_void
|
|
|
|
finish_1 "char"
|
|
|
|
finish_1 "short"
|
|
|
|
finish_1 "int"
|
|
|
|
finish_1 "long"
|
|
|
|
finish_1 "long_long"
|
2010-12-02 21:34:14 +00:00
|
|
|
if ![target_info exists gdb,skip_float_tests] {
|
|
|
|
finish_1 "float"
|
|
|
|
finish_1 "double"
|
|
|
|
}
|
2008-05-21 17:55:22 +00:00
|
|
|
finish_abbreviation "fin"
|
2000-12-08 19:30:32 +00:00
|
|
|
}
|
|
|
|
|
* gdb.base/call-strs.exp, gdb.base/default.exp,
gdb.base/ending-run.exp, gdb.base/finish.exp, gdb.base/funcargs.exp,
gdb.base/huge.exp, gdb.base/nodebug.exp, gdb.base/ptype.exp,
gdb.base/restore.exp, gdb.base/return.exp, gdb.base/setvar.exp,
gdb.base/watchpoints.exp, gdb.threads/gcore-thread.exp,
gdb.base/watchpoint-solib.exp: Save and restore timeout.
* gdb.base/ending-run.exp: Correct restore of timeout.
* gdb.base/page.exp: Remove unnecessary timeout setting.
2010-01-29 15:38:38 +00:00
|
|
|
set prev_timeout $timeout
|
2000-12-08 19:30:32 +00:00
|
|
|
set timeout 30
|
|
|
|
finish_tests
|
* gdb.base/call-strs.exp, gdb.base/default.exp,
gdb.base/ending-run.exp, gdb.base/finish.exp, gdb.base/funcargs.exp,
gdb.base/huge.exp, gdb.base/nodebug.exp, gdb.base/ptype.exp,
gdb.base/restore.exp, gdb.base/return.exp, gdb.base/setvar.exp,
gdb.base/watchpoints.exp, gdb.threads/gcore-thread.exp,
gdb.base/watchpoint-solib.exp: Save and restore timeout.
* gdb.base/ending-run.exp: Correct restore of timeout.
* gdb.base/page.exp: Remove unnecessary timeout setting.
2010-01-29 15:38:38 +00:00
|
|
|
set timeout $prev_timeout
|