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