Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-typeprint.exp
CommitLineData
88b9d363 1# Copyright (C) 2012-2022 Free Software Foundation, Inc.
18a9fc12
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
16if { [skip_cplus_tests] } { continue }
17
18load_lib gdb-python.exp
19load_lib cp-support.exp
20
21standard_testfile .cc
22
5b362f04 23if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug c++}]} {
18a9fc12
TT
24 return -1
25}
26
27if { [skip_python_tests] } { continue }
28
8448e842
TT
29set remote_python_file [gdb_remote_download host \
30 ${srcdir}/${subdir}/${testfile}.py]
18a9fc12 31
72ca0410 32gdb_test_no_output "source ${remote_python_file}" "load python file"
18a9fc12
TT
33
34cp_test_ptype_class s "basic test" "class" "templ<string>" {
35 { field public "T x;" }
36 { field public "templ<T> *value;" }
37} "" {} ""
38
39cp_test_ptype_class s "raw test" "class" "templ<basic_string>" {
40 { field public "basic_string x;" }
41 { field public "templ<basic_string> *value;" }
42} "" {} "/r"
43
44gdb_test_no_output "disable type-printer string"
45gdb_test "whatis bs" "basic_string" "whatis with disabled printer"
46
47gdb_test "info type-printers" "Global type printers:.*string.*disabled.*"
48
49gdb_test_no_output "enable type-printer string"
50gdb_test "whatis bs" "string" "whatis with enabled printer"
51
52gdb_test "whatis s" "templ<string>"
This page took 1.078149 seconds and 4 git commands to generate.