9087c8baf2c4c10a42661d89ed76aaa78270686f
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / foll-exec-mode.exp
1 # Copyright 1997-2021 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 is a test of gdb's follow-exec-mode.
17 #
18 # It first checks that exec events are supported by using a catchpoint,
19 # then tests multiple scenarios for follow-exec-mode using parameters
20 # that test:
21 # - each mode
22 # - different commands to execute past the exec
23 # - re-running both the original and new inferiors.
24 #
25 # Note that we can't single-step past an exec call. There has to
26 # be a breakpoint in order to stop after the exec, even if we use
27 # a single-step command to execute past the exec.
28
29 # Remote mode doesn't support the 'run' command, which is
30 # required for follow-exec-mode testing.
31 if { [target_info exists gdb_protocol]
32 && [target_info gdb_protocol] == "remote" } {
33 continue
34 }
35
36 # Until "catch exec" is implemented on other targets...
37 #
38 if {![istarget "*-linux*"]} then {
39 continue
40 }
41
42 standard_testfile foll-exec-mode.c
43
44 set testfile2 "execd-prog"
45 set srcfile2 ${testfile2}.c
46 set binfile2 [standard_output_file ${testfile2}]
47
48 set compile_options debug
49
50 # build the first test case
51 if { [gdb_compile "${srcdir}/${subdir}/${srcfile2}" "${binfile2}" executable $compile_options] != "" } {
52 untested "failed to compile"
53 return -1
54 }
55
56 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable $compile_options] != "" } {
57 untested "failed to compile"
58 return -1
59 }
60
61 # Test exec catchpoints to ensure exec events are supported.
62 #
63 proc do_catch_exec_test { } {
64 global testfile
65 global gdb_prompt
66
67 clean_restart $testfile
68
69 # Start the program running, and stop at main.
70 #
71 if ![runto_main] then {
72 fail "couldn't run ${testfile}"
73 return
74 }
75
76 # Verify that the system supports "catch exec".
77 gdb_test "catch exec" "Catchpoint \[0-9\]* \\(exec\\)" "insert first exec catchpoint"
78 set has_exec_catchpoints 0
79 gdb_test_multiple "continue" "continue to first exec catchpoint" {
80 -re ".*Your system does not support this type\r\nof catchpoint.*$gdb_prompt $" {
81 unsupported "continue to first exec catchpoint"
82 }
83 -re ".*Catchpoint.*$gdb_prompt $" {
84 set has_exec_catchpoints 1
85 pass "continue to first exec catchpoint"
86 }
87 }
88
89 if {$has_exec_catchpoints == 0} {
90 unsupported "exec catchpoints"
91 return
92 }
93 }
94
95 # Test follow-exec-mode in the specified scenario.
96 # MODE determines whether follow-exec-mode is "same" or "new".
97 # CMD determines the command used to execute past the exec call.
98 # INFSWITCH is ignored for MODE == "same", and for "new" it is
99 # used to determine whether to switch to the original inferior
100 # before re-running.
101
102 proc do_follow_exec_mode_tests { mode cmd infswitch } {
103 global binfile srcfile srcfile2 testfile testfile2
104 global gdb_prompt
105
106 with_test_prefix "$mode,$cmd,$infswitch" {
107 clean_restart $testfile
108
109 # Start the program running, and stop at main.
110 #
111 if ![runto_main] then {
112 fail "couldn't run ${testfile}"
113 return
114 }
115
116 set target_is_native [gdb_is_target_native]
117
118 # Set the follow-exec mode.
119 #
120 gdb_test_no_output "set follow-exec-mode $mode"
121
122 # Run to the line of the exec call.
123 #
124 gdb_breakpoint [gdb_get_line_number "Set breakpoint here"]
125 gdb_continue_to_breakpoint "continue to line of exec call"
126
127 # Set up the output we expect to see after we execute past the exec.
128 #
129 set execd_line [gdb_get_line_number "after-exec" $srcfile2]
130 set expected_re ".*xecuting new program: .*${testfile2}.*Breakpoint .,.*${srcfile2}:${execd_line}.*$gdb_prompt $"
131
132 # Set a breakpoint after the exec call if we aren't single-stepping
133 # past it.
134 #
135 if {$cmd == "continue"} {
136 gdb_breakpoint "$execd_line"
137 }
138
139 # Execute past the exec call.
140 #
141 set test "$cmd past exec"
142 gdb_test_multiple $cmd $test {
143 -re "$expected_re" {
144 pass $test
145 }
146 }
147
148 # Set expected output, given the test parameters.
149 #
150 if {$mode == "same"} {
151 set expected_re "\\* 1.*process.*"
152 } elseif { $mode == "new" } {
153 # If using the native target, we want to specifically check that the
154 # process target, which was automatically pushed when running, was
155 # automatically unpushed from inferior 1 on exec. Use a
156 # different regexp that verifies the Connection field is empty.
157 if { $target_is_native } {
158 set expected_re " 1.*<null> +[string_to_regexp $binfile].*\r\n\\* 2.*process.*$testfile2 .*"
159 } else {
160 set expected_re " 1.*null.*$testfile.*\r\n\\* 2.*process.*$testfile2 .*"
161 }
162 } else {
163 error "Invalid mode: $mode"
164 }
165
166 # Check that the inferior list is correct:
167 # - one inferior for MODE == "same"
168 # - two inferiors for MODE == "new", current is execd program
169 #
170 gdb_test "info inferiors" $expected_re "Check inferior list"
171
172 set expected_inf ""
173 if {$mode == "same"} {
174 # One inferior, the execd program.
175 set expected_inf $testfile2
176 } elseif {$infswitch == "infswitch"} {
177 # Two inferiors, we have switched to the original program.
178 set expected_inf $testfile
179 gdb_test "inferior 1" "Switching to inferior 1.*$testfile.*" "switch inferiors"
180 } else {
181 # Two inferiors, run the execd program
182 set expected_inf $testfile2
183 }
184
185 # Now check that a 'run' command will run the correct inferior.
186 #
187 set test "use correct executable ($expected_inf) for run after follow exec"
188 gdb_run_cmd
189 gdb_test_multiple "" $test {
190 -re {Start it from the beginning\? \(y or n\) $} {
191 send_gdb "y\n"
192 exp_continue
193 }
194 -re "Starting program: .*$expected_inf.*Breakpoint .,.*\r\n$gdb_prompt $" {
195 pass $test
196 }
197 }
198 }
199 }
200
201 do_catch_exec_test
202
203 foreach cmd {"next" "continue"} {
204 foreach mode {"same" "new"} {
205 # Test basic follow-exec-mode.
206 do_follow_exec_mode_tests $mode $cmd "no_infswitch"
207 if {$mode == "new"} {
208 # Test that when we do 'run' we get the correct executable.
209 do_follow_exec_mode_tests $mode $cmd "infswitch"
210 }
211 }
212 }
213
214 return 0
This page took 0.037319 seconds and 3 git commands to generate.