OSDN Git Service

2004-08-13 Michael Chastain <mec.gnu@mindspring.com>
[pf3gnuchains/pf3gnuchains3x.git] / gdb / testsuite / gdb.mi / mi-break.exp
1 # Copyright 1999, 2001, 2004 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 2 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, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
16
17 #
18 # Test essential Machine interface (MI) operations
19 #
20 # Verify that, using the MI, we can run a simple program and perform basic
21 # debugging activities like: insert breakpoints, run the program,
22 # step, next, continue until it ends and, last but not least, quit.
23 #
24 # The goal is not to test gdb functionality, which is done by other tests,
25 # but to verify the correct output response to MI operations.
26 #
27
28 load_lib mi-support.exp
29 set MIFLAGS "-i=mi"
30
31 gdb_exit
32 if [mi_gdb_start] {
33     continue
34 }
35
36 set testfile "basics"
37 set srcfile ${testfile}.c
38 set binfile ${objdir}/${subdir}/${testfile}
39 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
40      gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
41 }
42
43 mi_delete_breakpoints
44 mi_gdb_reinitialize_dir $srcdir/$subdir
45 mi_gdb_load ${binfile}
46
47 # Locate line numbers in basics.c.
48 set line_callee4_head  [gdb_get_line_number "callee4 ("]
49 set line_callee4_body  [expr $line_callee4_head + 2]
50 set line_callee3_head  [gdb_get_line_number "callee3 ("]
51 set line_callee3_body  [expr $line_callee3_head + 2]
52 set line_callee2_head  [gdb_get_line_number "callee2 ("]
53 set line_callee2_body  [expr $line_callee2_head + 2]
54 set line_callee1_head  [gdb_get_line_number "callee1 ("]
55 set line_callee1_body  [expr $line_callee1_head + 2]
56 set line_main_head     [gdb_get_line_number "main ("]
57 set line_main_body     [expr $line_main_head + 2]
58
59 proc test_tbreak_creation_and_listing {} {
60     global mi_gdb_prompt
61     global srcfile
62     global hex
63     global line_callee4_head line_callee4_body
64     global line_callee3_head line_callee3_body
65     global line_callee2_head line_callee2_body
66     global line_callee1_head line_callee1_body
67     global line_main_head    line_main_body
68
69     # Insert some breakpoints and list them
70     # Also, disable some so they do not interfere with other tests
71     # Tests:
72     # -break-insert -t main
73     # -break-insert -t basics.c:callee2
74     # -break-insert -t basics.c:$line_callee3_head
75     # -break-insert -t srcfile:$line_callee4_head
76     # -break-list
77
78     mi_gdb_test "222-break-insert -t main" \
79              "222\\^done,bkpt=\{number=\"1\",type=\"breakpoint\",disp=\"del\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",line=\"$line_main_body\",times=\"0\"\}" \
80              "break-insert -t operation"
81
82     mi_gdb_test "333-break-insert -t basics.c:callee2" \
83              "333\\^done,bkpt=\{number=\"2\",type=\"breakpoint\",disp=\"del\",enabled=\"y\",addr=\"$hex\",func=\"callee2\",file=\".*basics.c\",line=\"$line_callee2_body\",times=\"0\"\}" \
84              "insert temp breakpoint at basics.c:callee2"
85
86     mi_gdb_test "444-break-insert -t basics.c:$line_callee3_head" \
87              "444\\^done,bkpt=\{number=\"3\",type=\"breakpoint\",disp=\"del\",enabled=\"y\",addr=\"$hex\",func=\"callee3\",file=\".*basics.c\",line=\"$line_callee3_head\",times=\"0\"\}" \
88              "insert temp breakpoint at basics.c:\$line_callee3_body"
89
90     # Getting the quoting right is tricky.  That is "\"<file>\":$line_callee4_head"
91     mi_gdb_test "555-break-insert -t \"\\\"${srcfile}\\\":$line_callee4_head\"" \
92              "555\\^done,bkpt=\{number=\"4\",type=\"breakpoint\",disp=\"del\",enabled=\"y\",addr=\"$hex\",func=\"callee4\",file=\".*basics.c\",line=\"$line_callee4_head\",times=\"0\"\}" \
93              "insert temp breakpoint at \"<fullfilename>\":\$line_callee4_head"
94
95     mi_gdb_test "666-break-list" \
96             "666\\\^done,BreakpointTable=\{nr_rows=\".\",nr_cols=\".\",hdr=\\\[\{width=\".*\",alignment=\".*\",col_name=\"number\",colhdr=\"Num\"\}.*colhdr=\"Type\".*colhdr=\"Disp\".*colhdr=\"Enb\".*colhdr=\"Address\".*colhdr=\"What\".*\\\],body=\\\[bkpt=\{number=\"1\",type=\"breakpoint\",disp=\"del\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",line=\"$line_main_body\",times=\"0\"\}.*\\\]\}" \
97                 "list of breakpoints"
98
99     mi_gdb_test "777-break-delete" \
100             "777\\^done" \
101             "delete temp breakpoints"
102 }
103
104 proc test_rbreak_creation_and_listing {} {
105     global mi_gdb_prompt
106     global srcfile
107     global hex
108     global line_callee4_head line_callee4_body
109     global line_callee3_head line_callee3_body
110     global line_callee2_head line_callee2_body
111     global line_callee1_head line_callee1_body
112     global line_main_head    line_main_body
113
114     # Insert some breakpoints and list them
115     # Also, disable some so they do not interfere with other tests
116     # Tests:
117     # -break-insert -r main
118     # -break-insert -r callee2
119     # -break-insert -r callee
120     # -break-insert -r .*llee
121     # -break-list
122
123     setup_xfail "*-*-*"
124     mi_gdb_test "122-break-insert -r main" \
125              "122\\^done,bkpt=\{number=\"5\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_main_body\"\}" \
126              "break-insert -r operation"
127
128     setup_xfail "*-*-*"
129     mi_gdb_test "133-break-insert -r callee2" \
130              "133\\^done,bkpt=\{number=\"6\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee2_body\"\}" \
131              "insert breakpoint with regexp callee2"
132
133     setup_xfail "*-*-*"
134     mi_gdb_test "144-break-insert -r callee" \
135             "144\\^done,bkpt=\{number=\"7\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee1_body\"\},bkpt=\{number=\"8\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee2_body\"\},bkpt=\{number=\"9\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee3_body\"\},bkpt=\{number=\"10\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee4_body\"\}" \
136              "insert breakpoint with regexp callee"
137
138     setup_xfail "*-*-*"
139     mi_gdb_test "155-break-insert -r \.\*llee" \
140             "155\\^done,bkpt=\{number=\"11\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee1_body\"\},bkpt=\{number=\"12\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee2_body\"\},bkpt=\{number=\"13\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee3_body\"\},bkpt=\{number=\"14\",addr=\"$hex\",file=\".*basics.c\",line=\"$line_callee4_body\"\}" \
141              "insert breakpoint with regexp .*llee"
142
143     setup_xfail "*-*-*"
144     mi_gdb_test "166-break-list" \
145             "1\\\^done,BreakpointTable=\{nr_rows=\".\",nr_cols=\".\",hdr=\\\[\{width=\".*\",alignment=\".*\",col_name=\"number\",colhdr=\"Num\"\}.*colhdr=\"Type\".*colhdr=\"Disp\".*colhdr=\"Enb\".*colhdr=\"Address\".*colhdr=\"What\".*\\\],body=\\\[bkpt=\{number=\"5\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"$hex\",func=\"main\",file=\".*basics.c\",line=\"$line_main_body\",times=\"0\"\},.*\}\\\]\}" \
146                 "list of breakpoints"
147
148     mi_gdb_test "177-break-delete" \
149             "177\\^done" \
150             "delete temp breakpoints"
151 }
152
153 test_tbreak_creation_and_listing
154 test_rbreak_creation_and_listing
155
156 mi_gdb_exit
157 return 0