2017-01-01 07:50:51 +01:00
|
|
|
# Copyright 2003-2017 Free Software Foundation, Inc.
|
2003-07-15 18:28:21 +02: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 20:14:19 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2003-07-15 18:28:21 +02:00
|
|
|
# (at your option) any later version.
|
2007-08-23 20:14:19 +02:00
|
|
|
#
|
2003-07-15 18:28:21 +02: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 20:14:19 +02:00
|
|
|
#
|
2003-07-15 18:28:21 +02:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 20:14:19 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-07-15 18:28:21 +02:00
|
|
|
|
|
|
|
# Tests for PR gdb/1250.
|
|
|
|
# 2003-07-15 Michael Chastain <mec@shout.net>
|
|
|
|
|
|
|
|
# This file is part of the gdb testsuite.
|
|
|
|
|
|
|
|
#
|
|
|
|
# test running programs
|
|
|
|
#
|
|
|
|
|
test suite update - gdb.base/[efg]
Convert files gdb.base/[efg]*.exp to use standard_output_file et al.
* ena-dis-br.exp, enum_cond.exp, enumval.exp, environ.exp,
eu-strip-infcall.exp, eval-skip.exp, exe-lock.exp,
expand-psymtabs.exp, exprs.exp, fileio.exp, find.exp,
fixsection.exp, foll-exec.exp, foll-fork.exp,
fortran-sym-case.exp, frame-args.exp, freebpcmd.exp, fullname.exp,
funcargs.exp, gcore-buffer-overflow.exp, gcore.exp, gdb1090.exp,
gdb11530.exp, gdb11531.exp, gdb1250.exp, gdb1555.exp, gdb1821.exp,
gdbindex-stabs.exp, gdbvars.exp, gnu-ifunc.exp, gnu_vector.exp:
Use standard_testfile, standard_output_file, prepare_for_testing,
clean_restart.
2013-06-27 20:50:30 +02:00
|
|
|
standard_testfile .c
|
2003-07-15 18:28:21 +02:00
|
|
|
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
|
2016-12-01 21:47:50 +01:00
|
|
|
untested "failed to compile"
|
2006-08-10 07:27:22 +02:00
|
|
|
return -1
|
2003-07-15 18:28:21 +02:00
|
|
|
}
|
|
|
|
|
test suite update - gdb.base/[efg]
Convert files gdb.base/[efg]*.exp to use standard_output_file et al.
* ena-dis-br.exp, enum_cond.exp, enumval.exp, environ.exp,
eu-strip-infcall.exp, eval-skip.exp, exe-lock.exp,
expand-psymtabs.exp, exprs.exp, fileio.exp, find.exp,
fixsection.exp, foll-exec.exp, foll-fork.exp,
fortran-sym-case.exp, frame-args.exp, freebpcmd.exp, fullname.exp,
funcargs.exp, gcore-buffer-overflow.exp, gcore.exp, gdb1090.exp,
gdb11530.exp, gdb11531.exp, gdb1250.exp, gdb1555.exp, gdb1821.exp,
gdbindex-stabs.exp, gdbvars.exp, gnu-ifunc.exp, gnu_vector.exp:
Use standard_testfile, standard_output_file, prepare_for_testing,
clean_restart.
2013-06-27 20:50:30 +02:00
|
|
|
clean_restart ${binfile}
|
2003-07-15 18:28:21 +02:00
|
|
|
|
2004-03-24 19:41:50 +01:00
|
|
|
if ![runto abort {allow-pending}] then {
|
2003-07-15 18:28:21 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
# See http://sources.redhat.com/gdb/bugs/1250
|
|
|
|
#
|
|
|
|
# In a nutshell: the function 'beta' ends with a call to 'abort', which
|
|
|
|
# is a noreturn function. So the last instruction of 'beta' is a call
|
|
|
|
# to 'abort'. When gdb looks for information about the caller of
|
|
|
|
# 'beta', it looks at the instruction after the call to 'abort' -- which
|
|
|
|
# is the first instruction of 'alpha'! So gdb uses the wrong frame
|
|
|
|
# information. It thinks that the test program is in 'alpha' and that
|
|
|
|
# the prologue "push %ebp / mov %esp,%ebp" has not been executed yet,
|
|
|
|
# and grabs the wrong values.
|
|
|
|
#
|
|
|
|
# By the nature of the bug, it could pass if the C compiler is not smart
|
|
|
|
# enough to implement 'abort' as a noreturn function. This is okay.
|
|
|
|
# The real point is that users often put breakpoints on noreturn
|
|
|
|
# functions such as 'abort' or some kind of exitting function, and those
|
|
|
|
# breakpoints should work.
|
|
|
|
|
|
|
|
gdb_test_multiple "backtrace" "backtrace from abort" {
|
|
|
|
-re "#0.*abort.*\r\n#1.*beta.*\r\n#2.*alpha.*\r\n#3.*main.*\r\n$gdb_prompt $" {
|
|
|
|
pass "backtrace from abort"
|
|
|
|
}
|
|
|
|
-re "#0.*abort.*\r\n#1.*beta.*\r\n$gdb_prompt $" {
|
|
|
|
# This happens with gdb HEAD as of 2003-07-13, with gcc 3.3,
|
|
|
|
# binutils 2.14, either -gdwarf-2 or -gstabs+, on native
|
|
|
|
# i686-pc-linux-gnu.
|
|
|
|
#
|
|
|
|
# gdb gets 'abort' and 'beta' right and then goes into the
|
|
|
|
# weeds.
|
|
|
|
kfail "gdb/1250" "backtrace from abort"
|
|
|
|
}
|
|
|
|
}
|