Blame SOURCES/gdb-vla-intel-tests.patch

7a6771
Index: gdb-7.10.50.20160106/gdb/testsuite/gdb.fortran/vla-func.exp
7a6771
===================================================================
7a6771
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
7a6771
+++ gdb-7.10.50.20160106/gdb/testsuite/gdb.fortran/vla-func.exp	2016-01-08 19:15:44.983637680 +0100
7a6771
@@ -0,0 +1,61 @@
7a6771
+# Copyright 2014 Free Software Foundation, Inc.
7a6771
+
7a6771
+# This program is free software; you can redistribute it and/or modify
7a6771
+# it under the terms of the GNU General Public License as published by
7a6771
+# the Free Software Foundation; either version 3 of the License, or
7a6771
+# (at your option) any later version.
7a6771
+#
7a6771
+# This program is distributed in the hope that it will be useful,
7a6771
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
7a6771
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7a6771
+# GNU General Public License for more details.
7a6771
+#
7a6771
+# You should have received a copy of the GNU General Public License
7a6771
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
7a6771
+
7a6771
+standard_testfile ".f90"
7a6771
+
7a6771
+if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} \
7a6771
+    {debug f90 quiet}] } {
7a6771
+    return -1
7a6771
+}
7a6771
+
7a6771
+if ![runto MAIN__] then {
7a6771
+    perror "couldn't run to breakpoint MAIN__"
7a6771
+    continue
7a6771
+}
7a6771
+
7a6771
+# Check VLA passed to first Fortran function.
7a6771
+gdb_breakpoint [gdb_get_line_number "func1-vla-passed"]
7a6771
+gdb_continue_to_breakpoint "func1-vla-passed"
7a6771
+gdb_test "print vla" " = \\( *\\( *22, *22, *22,\[()22, .\]*\\)" \
7a6771
+  "print vla (func1)"
7a6771
+gdb_test "ptype vla" "type = integer\\\(kind=4\\\) \\\(10,10\\\)" \
7a6771
+  "ptype vla (func1)"
7a6771
+
7a6771
+gdb_breakpoint [gdb_get_line_number "func1-vla-modified"]
7a6771
+gdb_continue_to_breakpoint "func1-vla-modified"
7a6771
+gdb_test "print vla(5,5)" " = 55" "print vla(5,5) (func1)"
7a6771
+gdb_test "print vla(7,7)" " = 77" "print vla(5,5) (func1)"
7a6771
+
7a6771
+# Check if the values are correct after returning from func1
7a6771
+gdb_breakpoint [gdb_get_line_number "func1-returned"]
7a6771
+gdb_continue_to_breakpoint "func1-returned"
7a6771
+gdb_test "print ret" " = .TRUE." "print ret after func1 returned"
7a6771
+
7a6771
+# Check VLA passed to second Fortran function
7a6771
+gdb_breakpoint [gdb_get_line_number "func2-vla-passed"]
7a6771
+gdb_continue_to_breakpoint "func2-vla-passed"
7a6771
+gdb_test "print vla" \
7a6771
+  " = \\\(44, 44, 44, 44, 44, 44, 44, 44, 44, 44\\\)" \
7a6771
+  "print vla (func2)"
7a6771
+gdb_test "ptype vla" "type = integer\\\(kind=4\\\) \\\(10\\\)" \
7a6771
+  "ptype vla (func2)"
7a6771
+
7a6771
+# Check if the returned VLA has the correct values and ptype.
7a6771
+gdb_breakpoint [gdb_get_line_number "func2-returned"]
7a6771
+gdb_continue_to_breakpoint "func2-returned"
7a6771
+gdb_test "print vla3" " = \\\(1, 2, 44, 4, 44, 44, 44, 8, 44, 44\\\)" \
7a6771
+  "print vla3 (after func2)"
7a6771
+gdb_test "ptype vla3" "type = integer\\\(kind=4\\\) \\\(10\\\)" \
7a6771
+  "ptype vla3 (after func2)"
7a6771
Index: gdb-7.10.50.20160106/gdb/testsuite/gdb.fortran/vla-func.f90
7a6771
===================================================================
7a6771
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
7a6771
+++ gdb-7.10.50.20160106/gdb/testsuite/gdb.fortran/vla-func.f90	2016-01-08 19:15:44.983637680 +0100
7a6771
@@ -0,0 +1,71 @@
7a6771
+! Copyright 2014 Free Software Foundation, Inc.
7a6771
+!
7a6771
+! This program is free software; you can redistribute it and/or modify
7a6771
+! it under the terms of the GNU General Public License as published by
7a6771
+! the Free Software Foundation; either version 2 of the License, or
7a6771
+! (at your option) any later version.
7a6771
+!
7a6771
+! This program is distributed in the hope that it will be useful,
7a6771
+! but WITHOUT ANY WARRANTY; without even the implied warranty of
7a6771
+! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7a6771
+! GNU General Public License for more details.
7a6771
+!
7a6771
+! You should have received a copy of the GNU General Public License
7a6771
+! along with this program; if not, write to the Free Software
7a6771
+! Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7a6771
+
7a6771
+logical function func1 (vla)
7a6771
+  implicit none
7a6771
+  integer, allocatable :: vla (:, :)
7a6771
+  func1 = allocated(vla)
7a6771
+  vla(5,5) = 55               ! func1-vla-passed
7a6771
+  vla(7,7) = 77
7a6771
+  return                      ! func1-vla-modified
7a6771
+end function func1
7a6771
+
7a6771
+function func2(vla)
7a6771
+  implicit none
7a6771
+  integer :: vla (:)
7a6771
+  integer :: func2(size(vla))
7a6771
+  integer :: k
7a6771
+
7a6771
+  vla(1) = 1                    ! func2-vla-passed
7a6771
+  vla(2) = 2
7a6771
+  vla(4) = 4
7a6771
+  vla(8) = 8
7a6771
+
7a6771
+  func2 = vla
7a6771
+end function func2
7a6771
+
7a6771
+program vla_func
7a6771
+  implicit none
7a6771
+  interface
7a6771
+    logical function func1 (vla)
7a6771
+      integer, allocatable :: vla (:, :)
7a6771
+    end function
7a6771
+  end interface
7a6771
+  interface
7a6771
+    function func2 (vla)
7a6771
+      integer :: vla (:)
7a6771
+      integer func2(size(vla))
7a6771
+    end function
7a6771
+  end interface
7a6771
+
7a6771
+  logical :: ret
7a6771
+  integer, allocatable :: vla1 (:, :)
7a6771
+  integer, allocatable :: vla2 (:)
7a6771
+  integer, allocatable :: vla3 (:)
7a6771
+
7a6771
+  ret = .FALSE.
7a6771
+
7a6771
+  allocate (vla1 (10,10))
7a6771
+  vla1(:,:) = 22
7a6771
+
7a6771
+  allocate (vla2 (10))
7a6771
+  vla2(:) = 44
7a6771
+
7a6771
+  ret = func1(vla1)
7a6771
+  vla3 = func2(vla2)          ! func1-returned
7a6771
+
7a6771
+  ret = .TRUE.                ! func2-returned
7a6771
+end program vla_func
7a6771
Index: gdb-7.10.50.20160106/gdb/testsuite/gdb.fortran/vla-stringsold.exp
7a6771
===================================================================
7a6771
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
7a6771
+++ gdb-7.10.50.20160106/gdb/testsuite/gdb.fortran/vla-stringsold.exp	2016-01-08 19:15:44.984637686 +0100
7a6771
@@ -0,0 +1,101 @@
7a6771
+# Copyright 2014 Free Software Foundation, Inc.
7a6771
+
7a6771
+# This program is free software; you can redistribute it and/or modify
7a6771
+# it under the terms of the GNU General Public License as published by
7a6771
+# the Free Software Foundation; either version 3 of the License, or
7a6771
+# (at your option) any later version.
7a6771
+#
7a6771
+# This program is distributed in the hope that it will be useful,
7a6771
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
7a6771
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7a6771
+# GNU General Public License for more details.
7a6771
+#
7a6771
+# You should have received a copy of the GNU General Public License
7a6771
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
7a6771
+
7a6771
+standard_testfile ".f90"
7a6771
+
7a6771
+if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} \
7a6771
+    {debug f90 quiet}] } {
7a6771
+    return -1
7a6771
+}
7a6771
+
7a6771
+# check that all fortran standard datatypes will be
7a6771
+# handled correctly when using as VLA's
7a6771
+
7a6771
+if ![runto MAIN__] then {
7a6771
+    perror "couldn't run to breakpoint MAIN__"
7a6771
+    continue
7a6771
+}
7a6771
+
7a6771
+gdb_breakpoint [gdb_get_line_number "var_char-allocated-1"]
7a6771
+gdb_continue_to_breakpoint "var_char-allocated-1"
7a6771
+gdb_test "print var_char" \
7a6771
+  " = \\(PTR TO -> \\( character\\*10 \\)\\) ${hex}" \
7a6771
+  "print var_char after allocated first time"
7a6771
+gdb_test "whatis var_char" "type = PTR TO -> \\( character\\*10 \\)" \
7a6771
+  "whatis var_char first time"
7a6771
+gdb_test "ptype var_char" "type = PTR TO -> \\( character\\*10 \\)" \
7a6771
+  "ptype var_char first time"
7a6771
+gdb_test "next" "\\d+.*var_char = 'foo'.*" \
7a6771
+  "next to allocation status of var_char"
7a6771
+gdb_test "print l" " = .TRUE." "print allocation status first time"
7a6771
+
7a6771
+gdb_breakpoint [gdb_get_line_number "var_char-filled-1"]
7a6771
+gdb_continue_to_breakpoint "var_char-filled-1"
7a6771
+gdb_test "print var_char" \
7a6771
+  " = \\(PTR TO -> \\( character\\*3 \\)\\) ${hex}" \
7a6771
+  "print var_char after filled first time"
7a6771
+gdb_test "print *var_char" " = 'foo'" \
7a6771
+  "print *var_char after filled first time"
7a6771
+gdb_test "whatis var_char" "type = PTR TO -> \\( character\\*3 \\)" \
7a6771
+  "whatis var_char after filled first time"
7a6771
+gdb_test "ptype var_char" "type = PTR TO -> \\( character\\*3 \\)" \
7a6771
+  "ptype var_char after filled first time"
7a6771
+gdb_test "print var_char(1)" " = 102 'f'" "print var_char(1)"
7a6771
+gdb_test "print var_char(3)" " = 111 'o'" "print var_char(3)"
7a6771
+
7a6771
+gdb_breakpoint [gdb_get_line_number "var_char-filled-2"]
7a6771
+gdb_continue_to_breakpoint "var_char-filled-2"
7a6771
+gdb_test "print var_char" \
7a6771
+  " = \\(PTR TO -> \\( character\\*6 \\)\\) ${hex}" \
7a6771
+  "print var_char after allocated second time"
7a6771
+gdb_test "print *var_char" " = 'foobar'" \
7a6771
+  "print *var_char after allocated second time"
7a6771
+gdb_test "whatis var_char" "type = PTR TO -> \\( character\\*6 \\)" \
7a6771
+  "whatis var_char second time"
7a6771
+gdb_test "ptype var_char" "type = PTR TO -> \\( character\\*6 \\)" \
7a6771
+  "ptype var_char second time"
7a6771
+
7a6771
+gdb_breakpoint [gdb_get_line_number "var_char-empty"]
7a6771
+gdb_continue_to_breakpoint "var_char-empty"
7a6771
+gdb_test "print var_char" \
7a6771
+  " = \\(PTR TO -> \\( character\\*0 \\)\\) ${hex}" \
7a6771
+  "print var_char after set empty"
7a6771
+gdb_test "print *var_char" " = \"\"" "print *var_char after set empty"
7a6771
+gdb_test "whatis var_char" "type = PTR TO -> \\( character\\*0 \\)" \
7a6771
+  "whatis var_char after set empty"
7a6771
+gdb_test "ptype var_char" "type = PTR TO -> \\( character\\*0 \\)" \
7a6771
+  "ptype var_char after set empty"
7a6771
+
7a6771
+gdb_breakpoint [gdb_get_line_number "var_char-allocated-3"]
7a6771
+gdb_continue_to_breakpoint "var_char-allocated-3"
7a6771
+gdb_test "print var_char" \
7a6771
+  " = \\(PTR TO -> \\( character\\*21 \\)\\) ${hex}" \
7a6771
+  "print var_char after allocated third time"
7a6771
+gdb_test "whatis var_char" "type = PTR TO -> \\( character\\*21 \\)" \
7a6771
+  "whatis var_char after allocated third time"
7a6771
+gdb_test "ptype var_char" "type = PTR TO -> \\( character\\*21 \\)" \
7a6771
+  "ptype var_char after allocated third time"
7a6771
+
7a6771
+gdb_breakpoint [gdb_get_line_number "var_char_p-associated"]
7a6771
+gdb_continue_to_breakpoint "var_char_p-associated"
7a6771
+gdb_test "print var_char_p" \
7a6771
+  " = \\(PTR TO -> \\( character\\*7 \\)\\) ${hex}" \
7a6771
+  "print var_char_p after associated"
7a6771
+gdb_test "print *var_char_p" " = 'johndoe'" \
7a6771
+  "print *var_char_ after associated"
7a6771
+gdb_test "whatis var_char_p" "type = PTR TO -> \\( character\\*7 \\)" \
7a6771
+  "whatis var_char_p after associated"
7a6771
+gdb_test "ptype var_char_p" "type = PTR TO -> \\( character\\*7 \\)" \
7a6771
+  "ptype var_char_p after associated"
7a6771
Index: gdb-7.10.50.20160106/gdb/testsuite/gdb.fortran/vla-stringsold.f90
7a6771
===================================================================
7a6771
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
7a6771
+++ gdb-7.10.50.20160106/gdb/testsuite/gdb.fortran/vla-stringsold.f90	2016-01-08 19:15:44.984637686 +0100
7a6771
@@ -0,0 +1,40 @@
7a6771
+! Copyright 2014 Free Software Foundation, Inc.
7a6771
+!
7a6771
+! This program is free software; you can redistribute it and/or modify
7a6771
+! it under the terms of the GNU General Public License as published by
7a6771
+! the Free Software Foundation; either version 2 of the License, or
7a6771
+! (at your option) any later version.
7a6771
+!
7a6771
+! This program is distributed in the hope that it will be useful,
7a6771
+! but WITHOUT ANY WARRANTY; without even the implied warranty of
7a6771
+! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7a6771
+! GNU General Public License for more details.
7a6771
+!
7a6771
+! You should have received a copy of the GNU General Public License
7a6771
+! along with this program; if not, write to the Free Software
7a6771
+! Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7a6771
+
7a6771
+program vla_strings
7a6771
+  character(len=:), target, allocatable   :: var_char
7a6771
+  character(len=:), pointer               :: var_char_p
7a6771
+  logical                                 :: l
7a6771
+
7a6771
+  allocate(character(len=10) :: var_char)
7a6771
+  l = allocated(var_char)                 ! var_char-allocated-1
7a6771
+  var_char = 'foo'
7a6771
+  deallocate(var_char)                    ! var_char-filled-1
7a6771
+  l = allocated(var_char)                 ! var_char-deallocated
7a6771
+  allocate(character(len=42) :: var_char)
7a6771
+  l = allocated(var_char)
7a6771
+  var_char = 'foobar'
7a6771
+  var_char = ''                           ! var_char-filled-2
7a6771
+  var_char = 'bar'                        ! var_char-empty
7a6771
+  deallocate(var_char)
7a6771
+  allocate(character(len=21) :: var_char)
7a6771
+  l = allocated(var_char)                 ! var_char-allocated-3
7a6771
+  var_char = 'johndoe'
7a6771
+  var_char_p => var_char
7a6771
+  l = associated(var_char_p)              ! var_char_p-associated
7a6771
+  var_char_p => null()
7a6771
+  l = associated(var_char_p)              ! var_char_p-not-associated
7a6771
+end program vla_strings