* gdb.fortran/complex.exp, gdb.fortran/complex.f: New files.
authorDaniel Jacobowitz <drow@false.org>
Mon, 7 May 2007 01:11:31 +0000 (01:11 +0000)
committerDaniel Jacobowitz <drow@false.org>
Mon, 7 May 2007 01:11:31 +0000 (01:11 +0000)
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.fortran/complex.exp [new file with mode: 0644]
gdb/testsuite/gdb.fortran/complex.f [new file with mode: 0644]

index c4b7e688dc4df4ca1c3d1cdec56bb0ad5b966b43..9add7019861f45413163b6d4f0f9440978b88980 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-06  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * gdb.fortran/complex.exp, gdb.fortran/complex.f: New files.
+
 2007-04-29  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * gdb.java/jmain.exp: Handle demangled names with and without method
diff --git a/gdb/testsuite/gdb.fortran/complex.exp b/gdb/testsuite/gdb.fortran/complex.exp
new file mode 100644 (file)
index 0000000..e78847d
--- /dev/null
@@ -0,0 +1,46 @@
+# Copyright 2007 Free Software Foundation, Inc.
+
+# 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
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+# 
+# 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.
+# 
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
+
+set testfile "complex"
+set srcfile ${testfile}.f
+set binfile ${objdir}/${subdir}/${testfile}
+
+if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
+         executable {debug f77 quiet}] != "" } {
+    untested "Couldn't compile ${srcfile}"
+    return -1
+}
+
+gdb_exit
+gdb_start
+gdb_reinitialize_dir $srcdir/$subdir
+gdb_load ${binfile}
+
+if ![runto MAIN__] then {
+    perror "Couldn't run to MAIN__"
+    continue
+}
+
+set bp_location [gdb_get_line_number "stop"]
+gdb_test "break $bp_location" \
+    "Breakpoint.*at.* file .*$srcfile, line $bp_location\\." \
+    "breakpoint at stop"
+
+gdb_test "continue" \
+    "Continuing\\..*Breakpoint.*" \
+    "continue to breakpoint"
+
+gdb_test "print c" "\\\$$decimal = \\(1000,-50\\)"
diff --git a/gdb/testsuite/gdb.fortran/complex.f b/gdb/testsuite/gdb.fortran/complex.f
new file mode 100644 (file)
index 0000000..321ea0c
--- /dev/null
@@ -0,0 +1,25 @@
+c Copyright 2007 Free Software Foundation, Inc.
+
+c This program is free software; you can redistribute it and/or modify
+c it under the terms of the GNU General Public License as published by
+c the Free Software Foundation; either version 2 of the License, or
+c (at your option) any later version.
+c 
+c This program is distributed in the hope that it will be useful,
+c but WITHOUT ANY WARRANTY; without even the implied warranty of
+c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+c GNU General Public License for more details.
+c 
+c You should have received a copy of the GNU General Public License
+c along with this program; if not, write to the Free Software
+c Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
+
+      real*8 a,b
+      complex*16 c
+
+      a = 1000
+      b = -50
+      c = cmplx(a,b)
+      write(*,*) s
+      stop
+      end
This page took 0.038366 seconds and 4 git commands to generate.