| OLD | NEW |
| 1 # Copyright (C) 2008-2012 Free Software Foundation, Inc. | 1 # Copyright (C) 2008-2012 Free Software Foundation, Inc. |
| 2 | 2 |
| 3 # This program is free software; you can redistribute it and/or modify | 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 | 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 | 5 # the Free Software Foundation; either version 3 of the License, or |
| 6 # (at your option) any later version. | 6 # (at your option) any later version. |
| 7 # | 7 # |
| 8 # This program is distributed in the hope that it will be useful, | 8 # This program is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 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/>. | 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | 15 |
| 16 # This file is part of the GDB testsuite. It tests the mechanism | 16 # This file is part of the GDB testsuite. It tests the mechanism |
| 17 # exposing values to Python. | 17 # exposing values to Python. |
| 18 | 18 |
| 19 if $tracelevel then { | |
| 20 strace $tracelevel | |
| 21 } | |
| 22 | |
| 23 if { [skip_cplus_tests] } { continue } | 19 if { [skip_cplus_tests] } { continue } |
| 24 | 20 |
| 25 set testfile "py-template" | 21 standard_testfile .cc |
| 26 set srcfile ${testfile}.cc | |
| 27 set binfile ${objdir}/${subdir}/${testfile} | |
| 28 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable \ | 22 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable \ |
| 29 {debug c++}] != "" } { | 23 {debug c++}] != "" } { |
| 30 untested "Couldn't compile ${srcfile}" | 24 untested "Couldn't compile ${srcfile}" |
| 31 return -1 | 25 return -1 |
| 32 } | 26 } |
| 33 | 27 |
| 34 # Start with a fresh gdb. | 28 # Start with a fresh gdb. |
| 35 | 29 |
| 36 gdb_exit | 30 gdb_exit |
| 37 gdb_start | 31 gdb_start |
| (...skipping 25 matching lines...) Expand all Loading... |
| 63 } | 57 } |
| 64 | 58 |
| 65 test_template_arg "${binfile}-ci" "const int" | 59 test_template_arg "${binfile}-ci" "const int" |
| 66 test_template_arg "${binfile}-vi" "volatile int" | 60 test_template_arg "${binfile}-vi" "volatile int" |
| 67 test_template_arg "${binfile}-cir" "const int &" | 61 test_template_arg "${binfile}-cir" "const int &" |
| 68 test_template_arg "${binfile}-vir" "volatile int &" | 62 test_template_arg "${binfile}-vir" "volatile int &" |
| 69 test_template_arg "${binfile}-vipc" "volatile int * const" | 63 test_template_arg "${binfile}-vipc" "volatile int * const" |
| 70 test_template_arg "${binfile}-vipcp" "volatile int * const *" | 64 test_template_arg "${binfile}-vipcp" "volatile int * const *" |
| 71 test_template_arg "${binfile}-cipv" "const int * volatile" | 65 test_template_arg "${binfile}-cipv" "const int * volatile" |
| 72 test_template_arg "${binfile}-cipvpcpvp" "const int * volatile * const * volatil
e *" | 66 test_template_arg "${binfile}-cipvpcpvp" "const int * volatile * const * volatil
e *" |
| OLD | NEW |