blob: 5b8196689a739223e5568322c34a15bf72b37935 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
# Copyright 2019-2025 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 3 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, see <http://www.gnu.org/licenses/>.
standard_testfile
if {[prepare_for_testing "failed to prepare" $testfile $srcfile debug]} {
return -1
}
if {![runto_main]} {
return 0
}
set marker " Break Here. "
gdb_breakpoint [gdb_get_line_number $marker]
gdb_continue_to_breakpoint "breakpt" ".*[string_to_regexp $marker].*"
gdb_test "p z1" [string_to_regexp " = 1.5 + 4.5i"]
gdb_test "p z2" [string_to_regexp " = 2.5 + -5.5i"]
gdb_test "p z3" [string_to_regexp " = 3.5 + 6.5i"]
# The following 3 tests are broken for Clang.
# More info at https://github.com/llvm/llvm-project/issues/52996.
if {[test_compiler_info clang-*-*]} { setup_xfail *-*-* }
gdb_test "ptype z1" " = complex double"
if {[test_compiler_info clang-*-*]} { setup_xfail *-*-* }
gdb_test "ptype z2" " = complex float"
if {[test_compiler_info clang-*-*]} { setup_xfail *-*-* }
gdb_test "ptype z3" " = complex long double"
with_test_prefix "double imaginary" {
set expr {$_cimag (z1)}
gdb_test "p $expr" " = 4.5"
gdb_test {ptype $} " = double"
gdb_test "ptype $expr" " = double"
}
with_test_prefix "float imaginary" {
set expr {$_cimag (z2)}
gdb_test "p $expr" " = -5.5"
gdb_test {ptype $} " = float"
gdb_test "ptype $expr" " = float"
}
with_test_prefix "long double imaginary" {
set expr {$_cimag (z3)}
gdb_test "p $expr" " = 6.5"
gdb_test {ptype $} " = long double"
gdb_test "ptype $expr" " = long double"
}
with_test_prefix "double real" {
set expr {$_creal (z1)}
gdb_test "p $expr" " = 1.5"
gdb_test {ptype $} " = double"
gdb_test "ptype $expr" " = double"
}
with_test_prefix "float real" {
set expr {$_creal (z2)}
gdb_test "p $expr" " = 2.5"
gdb_test {ptype $} " = float"
gdb_test "ptype $expr" " = float"
}
with_test_prefix "long double real" {
set expr {$_creal (z3)}
gdb_test "p $expr" " = 3.5"
gdb_test {ptype $} " = long double"
gdb_test "ptype $expr" " = long double"
}
gdb_test {p $_cimag (d1)} "expected a complex number"
gdb_test {p $_cimag (f1)} "expected a complex number"
gdb_test {p $_cimag (i1)} "expected a complex number"
gdb_test {p $_creal (d1)} "expected a complex number"
gdb_test {p $_creal (f1)} "expected a complex number"
gdb_test {p $_creal (i1)} "expected a complex number"
#
# General complex number tests.
#
gdb_test "print 23 + 7i" [string_to_regexp " = 23 + 7i"]
gdb_test "print 23.125f + 7i" [string_to_regexp " = 23.125 + 7i"]
gdb_test "print 23 + 7.25fi" [string_to_regexp " = 23 + 7.25i"]
gdb_test "print (23 + 7i) + (17 + 10i)" [string_to_regexp " = 40 + 17i"]
gdb_test "print 23 + -7i" [string_to_regexp " = 23 + -7i"]
gdb_test "print 23 - 7i" [string_to_regexp " = 23 + -7i"]
gdb_test "print -(23 + 7i)" [string_to_regexp " = -23 + -7i"]
gdb_test "print +(23 + 7i)" [string_to_regexp " = 23 + 7i"]
gdb_test "print ~(23 + 7i)" [string_to_regexp " = 23 + -7i"]
gdb_test "print (5 + 5i) * (2 + 2i)" [string_to_regexp " = 0 + 20i"]
gdb_test "print (5 + 7i) == (5 + 7i)" " = 1"
gdb_test "print (5 + 7i) == (8 + 7i)" " = 0"
gdb_test "print (5 + 7i) == (5 + 92i)" " = 0"
gdb_test "print (5 + 7i) != (5 + 7i)" " = 0"
gdb_test "print (5 + 7i) != (8 + 7i)" " = 1"
gdb_test "print (5 + 7i) != (5 + 92i)" " = 1"
gdb_test "print (20 - 4i) / (3 + 2i)" [string_to_regexp " = 4 + -4i"]
gdb_test "print (_Complex int) 4" [string_to_regexp " = 4 + 0i"]
gdb_test "print (_Complex float) 4.5" [string_to_regexp " = 4.5 + 0i"]
gdb_test "ptype __complex__ short" " = _Complex short"
gdb_test "print (_Complex int) (23.75 + 8.88i)" [string_to_regexp " = 23 + 8i"]
set re_reject_arg \
[string_to_regexp \
"Argument to complex arithmetic operation not supported."]
gdb_test "print (void *)0 + 5i" $re_reject_arg
gdb_test "print (_Decimal32)0 + 5i" $re_reject_arg
# Set language to c++. Avoid warning by not having current frame.
clean_restart
gdb_test_no_output "set language c++"
# C++ type tests.
gdb_test "print (bool)1 + 1i" [string_to_regexp "= 1 + 1i"]
|