packaging: Add python3-base dependency
[platform/upstream/gdb.git] / gdb / testsuite / gdb.mi / gdb2549.exp
1 # Copyright 2008-2023 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 # Test essential Machine interface (MI) operations
17 #
18 # Verify that, using the MI, we can run a simple program and look at registers.
19 #
20 # The goal is not to test gdb functionality, which is done by other tests,
21 # but to verify the correct output response to MI operations.
22 #
23
24
25 load_lib mi-support.exp
26 set MIFLAGS "-i=mi"
27
28 standard_testfile basics.c
29
30 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
31      untested "failed to compile"
32      return -1
33 }
34
35 proc register_tests_no_exec { } {
36         # Test the generic IDT chip.
37         mi_gdb_test "111-data-list-register-values" \
38             ".*111\\^error,msg=\"-data-list-register-values: Usage: -data-list-register-values \\\[--skip-unavailable\\\] <format> \\\[<regnum1>...<regnumN>\\\]\"" \
39                 "wrong arguments"
40
41         mi_gdb_test "111-data-list-register-values x" \
42                 ".*111\\^error,msg=\"No registers\.\"" \
43                 "no executable"
44 }
45
46 proc register_test { n arg format } {
47     global mi_gdb_prompt
48     global decimal
49
50     set cmd "$n-data-list-register-values $arg"
51     set test "register values $arg"
52
53     set state 0
54     gdb_test_multiple $cmd $test -prompt "$mi_gdb_prompt$" {
55         -re "$n\\^done,register-values=\\\[" {
56             if { $state == 0 } {
57                 set state 1
58                 exp_continue
59             }
60             fail $gdb_test_name
61         }
62         -re "\{number=\"$decimal\",value=\"$format\"\}" {
63             if { $state != 0 } {
64                 set state 2
65                 exp_continue
66             }
67             fail $gdb_test_name
68         }
69         -re "\{number=\"$decimal\",value=\"\[^\"\]*\"\}" {
70             exp_continue
71         }
72         -re "\]\r\n$mi_gdb_prompt$" {
73             if { $state == 2 } {
74                 pass $gdb_test_name
75             } else {
76                 fail $gdb_test_name
77             }
78         }
79     }
80 }
81
82 proc register_tests { } {
83     global hex
84     global decimal
85     set octal "\[0-7\]+"
86     set binary "\[0-1\]+"
87     set float \
88         "\\-?((\[0-9\]+(\\.\[0-9\]+)?(e\[-+\]\[0-9\]+)?)|(nan\\($hex\\)))"
89
90     register_test 222 x $hex
91     register_test 333 f $float
92     register_test 444 d -?$decimal
93     register_test 555 o $octal
94     register_test 666 t $binary
95 }
96
97 mi_clean_restart $binfile
98
99 register_tests_no_exec
100
101 mi_runto_main
102
103 register_tests
104
105 mi_gdb_exit
106 return 0