]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.mi/gdb2549.exp
run copyright.sh for 2011.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / gdb2549.exp
1 # Copyright 2008, 2009, 2010, 2011 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 gdb_exit
29 if [mi_gdb_start] {
30 continue
31 }
32
33 set testfile "basics"
34 set srcfile ${testfile}.c
35 set binfile ${objdir}/${subdir}/${testfile}
36 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
37 untested mi-regs.exp
38 return -1
39 }
40
41 proc register_tests_no_exec { } {
42 # Test the generic IDT chip.
43 mi_gdb_test "111-data-list-register-values" \
44 ".*111\\^error,msg=\"mi_cmd_data_list_register_values: Usage: -data-list-register-values <format> \\\[<regnum1>...<regnumN>\\\]\"" \
45 "wrong arguments"
46
47 mi_gdb_test "111-data-list-register-values x" \
48 ".*111\\^error,msg=\"No registers\.\"" \
49 "no executable"
50 }
51
52 proc register_tests { } {
53 global hex
54 global decimal
55 set octal "\[0-7\]+"
56 set binary "\[0-1\]+"
57 set float "\\-?((\[0-9\]+(\\.\[0-9\]+)?(e\[-+\]\[0-9\]+)?)|(nan\\($hex\\)))"
58
59 mi_gdb_test "222-data-list-register-values x" \
60 "222\\^done,register-values=\\\[\{number=\"0\",value=\"$hex\"\}.*\\\]" \
61 "register values x"
62
63 mi_gdb_test "333-data-list-register-values f" \
64 "333\\^done,register-values=\\\[\{number=\"0\",value=\"$float\"\}.*\\\]" \
65 "register values f"
66
67 mi_gdb_test "444-data-list-register-values d" \
68 "444\\^done,register-values=\\\[\{number=\"0\",value=\"-?$decimal\"\}.*\\\]" \
69 "register values d"
70
71 mi_gdb_test "555-data-list-register-values o" \
72 "555\\^done,register-values=\\\[\{number=\"0\",value=\"$octal\"\}.*\\\]" \
73 "register values o"
74
75 mi_gdb_test "666-data-list-register-values t" \
76 "666\\^done,register-values=\\\[\{number=\"0\",value=\"$binary\"\}.*\\\]" \
77 "register values t"
78 }
79
80 register_tests_no_exec
81 mi_run_to_main
82 register_tests
83
84 mi_gdb_exit
85 return 0