[python/Ada] gdb.lookup_type fails to looking primitive type
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-lookup-type.exp
CommitLineData
04dccad0
JB
1# Copyright (C) 2015 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# of exposing types to Python.
18
19load_lib gdb-python.exp
20
21# Note that the purpose of this testcase is to test the behavior
22# of gdb.lookup_type searching for the primitive types internally
23# created by each language since GDB. So, we must start GDB without
24# loading any symbol in.
25
26gdb_exit
27gdb_start
28gdb_reinitialize_dir $srcdir/$subdir
29
30# Skip all tests if Python scripting is not enabled.
31if { [skip_python_tests] } { continue }
32
33proc test_lookup_type { lang type_name } {
34 gdb_test_no_output "set language ${lang}"
35 gdb_test_no_output "python gdb.lookup_type('${type_name}')" \
36 "lookup type ${type_name} using language ${lang}"
37}
38
39test_lookup_type "ada" "character"
40
41test_lookup_type "c" "char"
42
43test_lookup_type "d" "ucent"
44
45test_lookup_type "fortran" "character"
46
47test_lookup_type "go" "int32"
48
49test_lookup_type "java" "byte"
50
51test_lookup_type "modula-2" "CARDINAL"
52
53test_lookup_type "opencl" "ushort"
54
55test_lookup_type "objective-c" "char"
56
57test_lookup_type "opencl" "ushort"
58
59test_lookup_type "pascal" "char"
This page took 0.025147 seconds and 4 git commands to generate.