]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.python/py-typeprint.exp
5e2a23807f9cba58793da67b9033eca4b7ff5ef6
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-typeprint.exp
1 # Copyright (C) 2012-2013 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 if { [skip_cplus_tests] } { continue }
17
18 load_lib gdb-python.exp
19 load_lib cp-support.exp
20
21 standard_testfile .cc
22
23 if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} {
24 return -1
25 }
26
27 if { [skip_python_tests] } { continue }
28
29 set remote_python_file [remote_download host ${srcdir}/${subdir}/${testfile}.py]
30
31 gdb_test_no_output "python exec (open ('${remote_python_file}').read ())"
32
33 cp_test_ptype_class s "basic test" "class" "templ<string>" {
34 { field public "T x;" }
35 { field public "templ<T> *value;" }
36 } "" {} ""
37
38 cp_test_ptype_class s "raw test" "class" "templ<basic_string>" {
39 { field public "basic_string x;" }
40 { field public "templ<basic_string> *value;" }
41 } "" {} "/r"
42
43 gdb_test_no_output "disable type-printer string"
44 gdb_test "whatis bs" "basic_string" "whatis with disabled printer"
45
46 gdb_test "info type-printers" "Global type printers:.*string.*disabled.*"
47
48 gdb_test_no_output "enable type-printer string"
49 gdb_test "whatis bs" "string" "whatis with enabled printer"
50
51 gdb_test "whatis s" "templ<string>"
52
53 remote_file host delete ${remote_python_file}