* lib/gdb.exp (skip_altivec_tests, skip_vsx_tests)
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / printmethod.exp
1 # Copyright 2002-2003, 2005-2012 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 # This tries to print out methods of classes.
17
18 # 2002-08-16 David Carlton <carlton@math.stanford.edu>
19
20 # This file is part of the gdb testsuite
21
22 if { [skip_cplus_tests] } { continue }
23
24 #
25 # test running programs
26 #
27
28 set testfile "printmethod"
29 set srcfile ${testfile}.cc
30 set binfile ${objdir}/${subdir}/${testfile}
31
32 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
33 untested printmethod.exp
34 return -1
35 }
36
37 if [get_compiler_info "c++"] {
38 return -1
39 }
40
41 gdb_exit
42 gdb_start
43 gdb_reinitialize_dir $srcdir/$subdir
44 gdb_load ${binfile}
45
46
47 if ![runto_main] then {
48 perror "couldn't run to breakpoint"
49 continue
50 }
51
52 # First, run to after we've constructed the object:
53
54 gdb_breakpoint [gdb_get_line_number "constructs-done"]
55 gdb_continue_to_breakpoint "end of constructors"
56
57 # The first of these is for PR gdb/653.
58
59 gdb_test "print theA->virt" \
60 "\\$\[0-9\]* = {void \\(A \\* const\\)} $hex <A::virt\\((void|)\\)>" \
61 "print virtual method."
62 gdb_test "print theA->nonvirt" \
63 "\\$\[0-9\]* = {void \\(A \\* const\\)} $hex <A::nonvirt\\((void|)\\)>" \
64 "print nonvirtual method."
65
66 gdb_exit
67 return 0
This page took 0.032908 seconds and 5 git commands to generate.