]>
Commit | Line | Data |
---|---|---|
0b302171 | 1 | # Copyright 2002-2003, 2005-2012 Free Software Foundation, Inc. |
e70d6e3f DC |
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 |
e70d6e3f | 6 | # (at your option) any later version. |
e22f8b7c | 7 | # |
e70d6e3f DC |
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 | # |
e70d6e3f | 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/>. |
e70d6e3f DC |
15 | |
16 | # This tries to print out methods of classes. | |
17 | ||
18 | # 2002-08-16 David Carlton <[email protected]> | |
19 | ||
20 | # This file is part of the gdb testsuite | |
21 | ||
e70d6e3f DC |
22 | if { [skip_cplus_tests] } { continue } |
23 | ||
24 | # | |
25 | # test running programs | |
26 | # | |
e70d6e3f DC |
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++}] != "" } { | |
b60f0898 JB |
33 | untested printmethod.exp |
34 | return -1 | |
e70d6e3f DC |
35 | } |
36 | ||
37 | if [get_compiler_info ${binfile} "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 | ||
0d5de010 | 59 | gdb_test "print theA->virt" \ |
3ce3b1ba | 60 | "\\$\[0-9\]* = {void \\(A \\* const\\)} $hex <A::virt\\((void|)\\)>" \ |
0d5de010 DJ |
61 | "print virtual method." |
62 | gdb_test "print theA->nonvirt" \ | |
3ce3b1ba | 63 | "\\$\[0-9\]* = {void \\(A \\* const\\)} $hex <A::nonvirt\\((void|)\\)>" \ |
0d5de010 | 64 | "print nonvirtual method." |
e70d6e3f DC |
65 | |
66 | gdb_exit | |
67 | return 0 |