gdb.python/python.exp: Update filename paths.
[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
e9e642a8
AB
23if { [skip_cplus_tests] } { continue }
24
5172aecb 25set testfile "py-template"
2c74e833
TT
26set srcfile ${testfile}.cc
27set binfile ${objdir}/${subdir}/${testfile}
28if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable \
29 {debug c++}] != "" } {
30 untested "Couldn't compile ${srcfile}"
31 return -1
32}
33
34# Start with a fresh gdb.
35
36gdb_exit
37gdb_start
38gdb_reinitialize_dir $srcdir/$subdir
39
f6bbabf0
PM
40# Skip all tests if Python scripting is not enabled.
41if { [skip_python_tests] } { continue }
2c74e833
TT
42
43proc test_template_arg {type} {
44 global testfile srcdir subdir srcfile binfile
45 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" \
46 executable \
47 [list debug c++ additional_flags="-DTYPE=$type"]] != "" } {
48 untested $type
49 return -1
50 }
51 gdb_load ${binfile}
52 if ![runto_main ] then {
53 perror "couldn't run to breakpoint"
54 return
55 }
56 # There is no executable code in main(), so we are where we want to be
f6978de9 57 gdb_test "print foo" ".*"
89493308 58 gdb_test_no_output "python foo = gdb.history(0)"
2c74e833
TT
59
60 # Replace '*' with '\*' in regex.
61 regsub -all {\*} $type {\*} t
62 gdb_test "python print foo.type.template_argument(0)" $t $type
63}
64
65test_template_arg "const int"
66test_template_arg "volatile int"
67test_template_arg "const int &"
68test_template_arg "volatile int &"
69test_template_arg "volatile int * const"
70test_template_arg "volatile int * const *"
71test_template_arg "const int * volatile"
72test_template_arg "const int * volatile * const * volatile *"
This page took 0.262919 seconds and 4 git commands to generate.