gdb
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / punctuator.exp
CommitLineData
ba163c7e
TT
1# Copyright 2008 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# Simple test for alternate punctuators.
17
18# This file is part of the gdb testsuite
19
20if $tracelevel then {
21 strace $tracelevel
22 }
23
24if { [skip_cplus_tests] } { continue }
25
26gdb_exit
27gdb_start
28
29gdb_test "set lang c++" ""
30gdb_test "print (0x5a5a bitand 0xaaaa) == (0x5a5a & 0xaaaa)" " = true"
31gdb_test "print (0x5a5a bitor 0xaaaa) == (0x5a5a | 0xaaaa)" " = true"
32gdb_test "print (0x5a5a xor 0xaaaa) == (0x5a5a ^ 0xaaaa)" " = true"
33gdb_test "print (0x5a5a and 0xaaaa) == (0x5a5a && 0xaaaa)" " = true"
34gdb_test "print (0x5a5a or 0xaaaa) == (0x5a5a || 0xaaaa)" " = true"
35gdb_test "print (not not 0xaaaa) == (!!0xaaaa)" " = true"
36gdb_test "print (compl 0xaaaa) == (~0xaaaa)" " = true"
37
38gdb_test "set $u = 0x5a5a" ""
39gdb_test "set $v = 0x5a5a" ""
40gdb_test "print ($u not_eq 0xaaaa) == ($v != 0xaaaa)" "= true"
41gdb_test "print ($u and_eq 0xaaaa) == ($v &= 0xaaaa)" "= true"
42
43gdb_test "set $u = 0x5a5a" ""
44gdb_test "set $v = 0x5a5a" ""
45gdb_test "print ($u or_eq 0xaaaa) == ($v |= 0xaaaa)" "= true"
46
47gdb_test "set $u = 0x5a5a" ""
48gdb_test "set $v = 0x5a5a" ""
49gdb_test "print ($u xor_eq 0xaaaa) == ($v ^= 0xaaaa)" "= true"
50
51gdb_exit
52return 0
This page took 0.026295 seconds and 4 git commands to generate.