]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.fortran/complex.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.fortran / complex.exp
1 # Copyright 2007-2024 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 3 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, see <http://www.gnu.org/licenses/>.
15
16 standard_testfile .f90
17 load_lib fortran.exp
18
19 require allow_fortran_tests
20
21 if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug f90 quiet}]} {
22 return -1
23 }
24
25 if {![fortran_runto_main]} {
26 return
27 }
28
29 # Depending on the compiler being used, the type names can be printed differently.
30 set complex4 [fortran_complex4]
31 set complex8 [fortran_complex8]
32 set complex16 [fortran_complex16]
33
34 gdb_breakpoint [gdb_get_line_number "stop"]
35 gdb_continue_to_breakpoint "continue"
36
37 gdb_test "print c" " = \\(1000,-50\\)"
38 gdb_test "print c4" " = \\(1000,-50\\)"
39 gdb_test "print c8" " = \\(321,-22\\)"
40 gdb_test "print dc" " = \\(321,-22\\)"
41
42 gdb_test "print c16" " = \\(-874,19\\)"
43 gdb_test "print ci" " = \\(-4,12\\)"
44
45 gdb_test "whatis c" "type = $complex4"
46 gdb_test "print \$_creal (c)" " = 1000"
47 with_test_prefix "c" {
48 gdb_test "whatis \$" " = real\\*4"
49 }
50
51 gdb_test "whatis c4" "type = $complex4"
52 gdb_test "print \$_creal (c4)" " = 1000"
53 with_test_prefix "c4" {
54 gdb_test "whatis \$" " = real\\*4"
55 }
56 gdb_test "whatis c8" "type = $complex8"
57 gdb_test "print \$_creal (c8)" " = 321"
58 with_test_prefix "c8" {
59 gdb_test "whatis \$" " = real\\*8"
60 }
61 gdb_test "whatis dc" "type = $complex8"
62 gdb_test "print \$_creal (dc)" " = 321"
63 with_test_prefix "dc" {
64 gdb_test "whatis \$" " = real\\*8"
65 }
66
67 gdb_test "whatis c16" "type = $complex16"
68 gdb_test "print \$_creal (c16)" " = -874"
69 with_test_prefix "c16" {
70 gdb_test "whatis \$" " = real\\*16"
71 }
72
73 gdb_test "whatis ci" "type = $complex4"
74 gdb_test "print \$_creal (ci)" " = -4"
75 with_test_prefix "ci" {
76 gdb_test "whatis \$" " = real\\*4"
77 }