* lib/gdb.exp (skip_altivec_tests, skip_vsx_tests)
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / pr-1023.exp
CommitLineData
0b302171 1# Copyright 2003, 2007-2012 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
MC
26
27set testfile "pr-1023"
28set srcfile ${testfile}.cc
29set binfile ${objdir}/${subdir}/${testfile}
30
31if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
b60f0898
JB
32 untested pr-1023.exp
33 return -1
5af1d5f3
MC
34}
35
4c93b1db 36if [get_compiler_info "c++"] {
5af1d5f3
MC
37 return -1
38}
39
40gdb_exit
41gdb_start
42gdb_reinitialize_dir $srcdir/$subdir
43gdb_load ${binfile}
44
45if ![runto_main] then {
46 perror "couldn't run to breakpoint"
47 continue
48}
49
f8d3bf8f 50gdb_test_multiple "break myClass::performBlocking" "break myClass::performBlocking" {
5af1d5f3
MC
51 -re "Breakpoint $decimal at $hex: file .*$srcfile, line 12.*$gdb_prompt $" {
52 pass "break myClass::performBlocking"
53 }
54 -re "the class myClass does not have any method named performBlocking.*$gdb_prompt $" {
55 # fails with gcc 2.95.3 -gstabs+, native i686-pc-linux-gnu
56 # -- chastain 2003-02-03
57 kfail "gdb/1023" "break myClass::performBlocking"
58 }
5af1d5f3
MC
59}
60
61gdb_test \
62 "break myClass::performUnblocking" \
63 "Breakpoint $decimal at $hex: file .*$srcfile, line 10.*"
64
65gdb_exit
66return 0
This page took 0.92413 seconds and 4 git commands to generate.