1 # Tests of overloaded operators resolution.
2 # Copyright
1998-2015 Free Software Foundation
, Inc.
4 # This
program is free software
; you can redistribute it and
/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation
; either version
3 of the License
, or
7 #
(at your option
) any later version.
9 # This
program is distributed in the hope that it will be useful
,
10 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License
for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this
program.
If not
, see
<http
://www.gnu.org
/licenses
/>.
17 # written by Elena Zannoni
(ezannoni@cygnus.com
)
19 # source file
"userdef.cc"
22 if { [skip_stl_tests
] } { continue }
24 #
On SPU this test fails because the executable exceeds local storage size.
25 if { [istarget
"spu*-*-*"] } {
31 if {[prepare_for_testing $testfile.exp $testfile $srcfile
{debug c
++}]} {
35 if ![runto_main
] then {
36 perror
"couldn't run to breakpoint"
40 gdb_test
"break marker1" \
41 "Breakpoint .*${srcfile}.*"
44 "Break.* marker1(\\(\\)|) \\(\\) at .*:$decimal.*" \
47 gdb_test
"up" " in main .*" "up from marker1"
49 gdb_test
"print one + two" "\\\$\[0-9\]* = {x = 6, y = 8}"
51 #
If GDB fails to restore the selected frame properly after the
52 # inferior function
call above
(see GDB PR
1155 for an explanation of
53 # why this might happen
), all the subsequent tests will fail. We
54 # should detect
report that failure
, but let the marker
call finish so
55 # that the rest of the tests can run undisturbed.
56 gdb_test_multiple
"frame" "re-selected 'main' frame after inferior call" {
57 -re
"#0 marker1.*$gdb_prompt $" {
58 setup_kfail
"gdb/1155" s390-*-linux-gnu
59 fail
"re-selected 'main' frame after inferior call"
60 gdb_test
"finish" ".*main.*at .*userdef.cc:.*// marker1-returns-here.*" \
61 "finish call to marker1"
63 -re
"#1 ($hex in )?main.*$gdb_prompt $" {
64 pass
"re-selected 'main' frame after inferior call"
68 gdb_test
"print one - two" "\\\$\[0-9\]* = {x = -2, y = -2}"
70 gdb_test
"print one * two" "\\\$\[0-9\]* = {x = 8, y = 15}"
72 gdb_test
"print one / two" "\\\$\[0-9\]* = {x = 0, y = 0}"
74 gdb_test
"print one % two" "\\\$\[0-9\]* = {x = 2, y = 3}"
76 gdb_test
"print one && two" "\\\$\[0-9\]* = 1\[\r\n\]"
78 gdb_test
"print one || two" "\\\$\[0-9\]* = 1\[\r\n\]"
80 gdb_test
"print one & two" "\\\$\[0-9\]* = {x = 0, y = 1}"
82 gdb_test
"print one | two" "\\\$\[0-9\]* = {x = 6, y = 7}"
84 gdb_test
"print one ^ two" "\\\$\[0-9\]* = {x = 6, y = 6}"
86 gdb_test
"print one < two" "\\\$\[0-9\]* = 1\[\r\n\]"
88 gdb_test
"print one <= two" "\\\$\[0-9\]* = 1\[\r\n\]"
90 gdb_test
"print one > two" "\\\$\[0-9\]* = 0\[\r\n\]"
92 gdb_test
"print one >= two" "\\\$\[0-9\]* = 0\[\r\n\]"
94 gdb_test
"print one == two" "\\\$\[0-9\]* = 0\[\r\n\]"
95 gdb_test
"print one.operator== (two)" "\\\$\[0-9\]* = 0\[\r\n\]"
97 gdb_test
"print one != two" "\\\$\[0-9\]* = 1\[\r\n\]"
99 # Can
't really check the output of this one without knowing
100 # target integer width. Make sure we don't try to
call
101 # the iostreams operator instead
, though.
102 gdb_test
"print one << 31" "\\\$\[0-9\]* = {x = -?\[0-9\]*, y = -?\[0-9\]*}"
104 # Should be fine even
on < 32-bit targets.
105 gdb_test
"print one >> 31" "\\\$\[0-9\]* = {x = 0, y = 0}"
107 gdb_test
"print !one" "\\\$\[0-9\]* = 0\[\r\n\]"
109 # Assumes
2's complement. So does everything...
110 gdb_test "print +one" "\\\$\[0-9\]* = {x = 2, y = 3}"
112 gdb_test "print ~one" "\\\$\[0-9\]* = {x = -3, y = -4}"
114 gdb_test "print -one" "\\\$\[0-9\]* = {x = -2, y = -3}"
116 gdb_test "print one++" "\\\$\[0-9\]* = {x = 2, y = 4}"
118 gdb_test "print ++one" "\\\$\[0-9\]* = {x = 3, y = 4}"
120 gdb_test "print one--" "\\\$\[0-9\]* = {x = 3, y = 3}"
122 gdb_test "print --one" "\\\$\[0-9\]* = {x = 2, y = 3}"
124 gdb_test "print one += 7" "\\\$\[0-9\]* = {x = 9, y = 10}"
126 gdb_test "print two = one" "\\\$\[0-9\]* = {x = 9, y = 10}"
128 # Check that GDB tolerates whitespace in operator names.
129 gdb_test "break A2::operator+" ".*Breakpoint $decimal at.*"
130 gdb_test "break A2::operator +" ".*Breakpoint $decimal at.*"
132 # Check that GDB handles operator* correctly.
133 gdb_test "print c" "\\\$\[0-9\]* = {m = {z = .*}}"
134 gdb_test "print *c" "\\\$\[0-9\]* = \\(Member &\\) @$hex: {z = .*}"
135 gdb_test "print &*c" "\\\$\[0-9\]* = \\(Member \\*\\) $hex"
136 gdb_test "ptype &*c" "type = (struct|class) Member {(\[\r\n \]+public:)?\[\r\n \]+int z;\[\r\n\].*} \\*"
138 gdb_test "print operator== (mem1, mem2)" " = false"
139 gdb_test "print operator== (mem1, mem1)" " = true"