]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.cp/punctuator.exp
Update copyright year range in all GDB files
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / punctuator.exp
CommitLineData
3666a048 1# Copyright 2008-2021 Free Software Foundation, Inc.
ba163c7e
TT
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# Simple test for alternate punctuators.
17
18# This file is part of the gdb testsuite
19
ba163c7e
TT
20if { [skip_cplus_tests] } { continue }
21
22gdb_exit
23gdb_start
24
a8d52276 25gdb_test_no_output "set lang c++"
ba163c7e
TT
26gdb_test "print (0x5a5a bitand 0xaaaa) == (0x5a5a & 0xaaaa)" " = true"
27gdb_test "print (0x5a5a bitor 0xaaaa) == (0x5a5a | 0xaaaa)" " = true"
28gdb_test "print (0x5a5a xor 0xaaaa) == (0x5a5a ^ 0xaaaa)" " = true"
29gdb_test "print (0x5a5a and 0xaaaa) == (0x5a5a && 0xaaaa)" " = true"
30gdb_test "print (0x5a5a or 0xaaaa) == (0x5a5a || 0xaaaa)" " = true"
31gdb_test "print (not not 0xaaaa) == (!!0xaaaa)" " = true"
32gdb_test "print (compl 0xaaaa) == (~0xaaaa)" " = true"
33
a8d52276
MS
34gdb_test_no_output "set \$u = 0x5a5a" "set \$u 1"
35gdb_test_no_output "set \$v = 0x5a5a" "set \$v 1"
0cd53049
JK
36gdb_test "print (\$u not_eq 0xaaaa) == (\$v != 0xaaaa)" "= true"
37gdb_test "print (\$u and_eq 0xaaaa) == (\$v &= 0xaaaa)" "= true"
38
a8d52276
MS
39gdb_test_no_output "set \$u = 0x5a5a" "set \$u 2"
40gdb_test_no_output "set \$v = 0x5a5a" "set \$v 2"
0cd53049
JK
41gdb_test "print (\$u or_eq 0xaaaa) == (\$v |= 0xaaaa)" "= true"
42
a8d52276
MS
43gdb_test_no_output "set \$u = 0x5a5a" "set \$u 3"
44gdb_test_no_output "set \$v = 0x5a5a" "set \$v 3"
0cd53049 45gdb_test "print (\$u xor_eq 0xaaaa) == (\$v ^= 0xaaaa)" "= true"
ba163c7e
TT
46
47gdb_exit
48return 0