* gdb.fortran/complex.exp, gdb.fortran/complex.f: New files.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.fortran / complex.exp
CommitLineData
be444858
DJ
1# Copyright 2007 Free Software Foundation, Inc.
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17set testfile "complex"
18set srcfile ${testfile}.f
19set binfile ${objdir}/${subdir}/${testfile}
20
21if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
22 executable {debug f77 quiet}] != "" } {
23 untested "Couldn't compile ${srcfile}"
24 return -1
25}
26
27gdb_exit
28gdb_start
29gdb_reinitialize_dir $srcdir/$subdir
30gdb_load ${binfile}
31
32if ![runto MAIN__] then {
33 perror "Couldn't run to MAIN__"
34 continue
35}
36
37set bp_location [gdb_get_line_number "stop"]
38gdb_test "break $bp_location" \
39 "Breakpoint.*at.* file .*$srcfile, line $bp_location\\." \
40 "breakpoint at stop"
41
42gdb_test "continue" \
43 "Continuing\\..*Breakpoint.*" \
44 "continue to breakpoint"
45
46gdb_test "print c" "\\\$$decimal = \\(1000,-50\\)"
This page took 0.027724 seconds and 4 git commands to generate.