]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/mips_pro.exp
Fix for PR gdb/1543.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / mips_pro.exp
CommitLineData
9b254dd1
DJ
1# Copyright 1997, 1999, 2000, 2001, 2003, 2007, 2008
2# Free Software Foundation, Inc.
c906108c
SS
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
c906108c 7# (at your option) any later version.
e22f8b7c 8#
c906108c
SS
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
c906108c 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 16
c906108c
SS
17if $tracelevel then {
18 strace $tracelevel
19}
20
21set prms_id 0
22set bug_id 0
23
24set testfile mips_pro
f2dd3617 25set srcfile ${testfile}.c
c906108c
SS
26set binfile ${objdir}/${subdir}/${testfile}
27
28# Create and source the file that provides information about the compiler
29# used to compile the test case.
30if [get_compiler_info ${binfile}] {
31 return -1;
32}
33
34
35# This test must be compiled with -O2 if using gcc.
36
f6246aba 37if { [test_compiler_info gcc-*-*] } then {
f2dd3617 38 if { [gdb_compile "${srcdir}/$subdir/${srcfile}" "${binfile}" executable {debug additional_flags=-O2}] != "" } {
b60f0898
JB
39 untested mips_pro.exp
40 return -1
c906108c
SS
41 }
42} else {
f2dd3617 43 if { [gdb_compile "${srcdir}/$subdir/${srcfile}" "${binfile}" executable {debug}] != "" } {
b60f0898
JB
44 untested mips_pro.exp
45 return -1
c906108c
SS
46 }
47}
48
49gdb_exit
50gdb_start
51gdb_reinitialize_dir $srcdir/$subdir
52gdb_load ${binfile}
53
54if [runto middle] then {
55 # PR 3016
44097287
FN
56 # warning: Hit heuristic-fence-post without finding
57 # warning: enclosing function for pc 0x1006ead0
f6246aba 58 if { [test_compiler_info gcc-*-*] } then {
44097287 59 setup_xfail "mips*-sgi-irix4*" "mips64*-*-elf"
c906108c 60 }
44097287
FN
61 # The call chain is main -> top -> middle. But gcc can optimize a tail
62 # call to a jump, so the stack may contain either main -> top -> middle
63 # or main -> middle.
64 gdb_test "backtrace" "#0.*middle.*#\[12\].*main.*"
c906108c
SS
65}
66return 0