2011-01-01 15:34:07 +00:00
|
|
|
# Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
2009-05-28 00:47:20 +00:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# This file is part of the GDB testsuite. It tests the mechanism
|
|
|
|
# exposing values to Python.
|
|
|
|
|
|
|
|
if $tracelevel then {
|
|
|
|
strace $tracelevel
|
|
|
|
}
|
|
|
|
|
2011-06-30 08:53:38 +00:00
|
|
|
if { [skip_cplus_tests] } { continue }
|
|
|
|
|
2009-09-09 17:45:42 +00:00
|
|
|
set testfile "py-template"
|
2009-05-28 00:47:20 +00:00
|
|
|
set srcfile ${testfile}.cc
|
|
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable \
|
|
|
|
{debug c++}] != "" } {
|
|
|
|
untested "Couldn't compile ${srcfile}"
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Start with a fresh gdb.
|
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
|
2010-02-24 11:11:17 +00:00
|
|
|
# Skip all tests if Python scripting is not enabled.
|
|
|
|
if { [skip_python_tests] } { continue }
|
2009-05-28 00:47:20 +00:00
|
|
|
|
2011-07-22 18:01:43 +00:00
|
|
|
proc test_template_arg {name type} {
|
2009-05-28 00:47:20 +00:00
|
|
|
global testfile srcdir subdir srcfile binfile
|
2011-07-22 18:01:43 +00:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}-${name}" \
|
2009-05-28 00:47:20 +00:00
|
|
|
executable \
|
|
|
|
[list debug c++ additional_flags="-DTYPE=$type"]] != "" } {
|
|
|
|
untested $type
|
|
|
|
return -1
|
|
|
|
}
|
2011-07-22 18:01:43 +00:00
|
|
|
gdb_load ${binfile}-${name}
|
2009-05-28 00:47:20 +00:00
|
|
|
if ![runto_main ] then {
|
|
|
|
perror "couldn't run to breakpoint"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
# There is no executable code in main(), so we are where we want to be
|
2010-06-10 19:48:20 +00:00
|
|
|
gdb_test "print foo" ".*"
|
2010-06-02 21:50:56 +00:00
|
|
|
gdb_test_no_output "python foo = gdb.history(0)"
|
2009-05-28 00:47:20 +00:00
|
|
|
|
|
|
|
# Replace '*' with '\*' in regex.
|
|
|
|
regsub -all {\*} $type {\*} t
|
|
|
|
gdb_test "python print foo.type.template_argument(0)" $t $type
|
|
|
|
}
|
|
|
|
|
2011-07-22 18:01:43 +00:00
|
|
|
test_template_arg "ci" "const int"
|
|
|
|
test_template_arg "vi" "volatile int"
|
|
|
|
test_template_arg "cir" "const int &"
|
|
|
|
test_template_arg "vir" "volatile int &"
|
|
|
|
test_template_arg "vipc" "volatile int * const"
|
|
|
|
test_template_arg "vipcp" "volatile int * const *"
|
|
|
|
test_template_arg "cipv" "const int * volatile"
|
|
|
|
test_template_arg "cipvpcpvp" "const int * volatile * const * volatile *"
|