run copyright.sh for 2011.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-template.exp
CommitLineData
7b6bb8da 1# Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
2c74e833
TT
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 file is part of the GDB testsuite. It tests the mechanism
17# exposing values to Python.
18
19if $tracelevel then {
20 strace $tracelevel
21}
22
5172aecb 23set testfile "py-template"
2c74e833
TT
24set srcfile ${testfile}.cc
25set binfile ${objdir}/${subdir}/${testfile}
26if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable \
27 {debug c++}] != "" } {
28 untested "Couldn't compile ${srcfile}"
29 return -1
30}
31
32# Start with a fresh gdb.
33
34gdb_exit
35gdb_start
36gdb_reinitialize_dir $srcdir/$subdir
37
f6bbabf0
PM
38# Skip all tests if Python scripting is not enabled.
39if { [skip_python_tests] } { continue }
2c74e833
TT
40
41proc test_template_arg {type} {
42 global testfile srcdir subdir srcfile binfile
43 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
44 executable \
45 [list debug c++ additional_flags="-DTYPE=$type"]] != "" } {
46 untested $type
47 return -1
48 }
49 gdb_load ${binfile}
50 if ![runto_main ] then {
51 perror "couldn't run to breakpoint"
52 return
53 }
54 # There is no executable code in main(), so we are where we want to be
f6978de9 55 gdb_test "print foo" ".*"
89493308 56 gdb_test_no_output "python foo = gdb.history(0)"
2c74e833
TT
57
58 # Replace '*' with '\*' in regex.
59 regsub -all {\*} $type {\*} t
60 gdb_test "python print foo.type.template_argument(0)" $t $type
61}
62
63test_template_arg "const int"
64test_template_arg "volatile int"
65test_template_arg "const int &"
66test_template_arg "volatile int &"
67test_template_arg "volatile int * const"
68test_template_arg "volatile int * const *"
69test_template_arg "const int * volatile"
70test_template_arg "const int * volatile * const * volatile *"
This page took 0.206144 seconds and 4 git commands to generate.