]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.cp/pr-1023.exp
Update year range in copyright notice of all files owned by the GDB project.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / pr-1023.exp
CommitLineData
32d0add0 1# Copyright 2003-2015 Free Software Foundation, Inc.
5af1d5f3
MC
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
5af1d5f3 6# (at your option) any later version.
e22f8b7c 7#
5af1d5f3
MC
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.
e22f8b7c 12#
5af1d5f3 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
5af1d5f3
MC
15
16# Tests for PR gdb/1023.
17# 2003-02-03 Michael Chastain <mec@shout.net>
18
19# This file is part of the gdb testsuite.
20
5af1d5f3
MC
21if { [skip_cplus_tests] } { continue }
22
23#
24# test running programs
25#
5af1d5f3 26
f5f3a911 27standard_testfile .cc
5af1d5f3 28
4c93b1db 29if [get_compiler_info "c++"] {
5af1d5f3
MC
30 return -1
31}
32
f5f3a911
TT
33if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} {
34 return -1
35}
5af1d5f3
MC
36
37if ![runto_main] then {
38 perror "couldn't run to breakpoint"
39 continue
40}
41
f8d3bf8f 42gdb_test_multiple "break myClass::performBlocking" "break myClass::performBlocking" {
5af1d5f3
MC
43 -re "Breakpoint $decimal at $hex: file .*$srcfile, line 12.*$gdb_prompt $" {
44 pass "break myClass::performBlocking"
45 }
46 -re "the class myClass does not have any method named performBlocking.*$gdb_prompt $" {
47 # fails with gcc 2.95.3 -gstabs+, native i686-pc-linux-gnu
48 # -- chastain 2003-02-03
49 kfail "gdb/1023" "break myClass::performBlocking"
50 }
5af1d5f3
MC
51}
52
53gdb_test \
54 "break myClass::performUnblocking" \
55 "Breakpoint $decimal at $hex: file .*$srcfile, line 10.*"
56
57gdb_exit
58return 0