run copyright.sh for 2011.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / bool.exp
CommitLineData
7b6bb8da
JB
1# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011
2# Free Software Foundation, Inc.
1315ad46
MK
3
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
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
1315ad46 7# (at your option) any later version.
e22f8b7c 8#
1315ad46
MK
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.
e22f8b7c 13#
1315ad46 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
1315ad46
MK
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@gnu.org
19
20# This file is part of the gdb testsuite.
21
22if $tracelevel then {
23 strace $tracelevel
24}
25
26# Test returning bool.
27
28if { [skip_cplus_tests] } { continue }
29
1315ad46
MK
30
31set testfile "bool"
32set srcfile ${testfile}.cc
33set binfile ${objdir}/${subdir}/${testfile}
34
35if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
b60f0898
JB
36 untested bool.exp
37 return -1
1315ad46
MK
38}
39
40gdb_exit
41gdb_start
42gdb_reinitialize_dir $srcdir/$subdir
43gdb_load ${binfile}
44
45runto_main
46
47# Testcases for tdep/2075.
48
49gdb_test "print return_true()" "\\$.* = true"
50gdb_test "print return_false()" "\\$.* = false"
This page took 0.523129 seconds and 4 git commands to generate.