1 # Copyright 2009-2012 Free Software Foundation, Inc.
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.
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.
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/>.
16 # Test multi-exec / multi-process features that work for all configurations,
17 # even ones that cannot run multiple processes simultaneously.
22 set srcfile1 ${exec1}.c
23 set binfile1 [standard_output_file ${exec1}]
26 set srcfile2 ${exec2}.c
27 set binfile2 [standard_output_file ${exec2}]
30 set srcfile3 ${exec3}.c
31 set binfile3 [standard_output_file ${exec3}]
33 if { [build_executable ${testfile}.exp ${exec1} "${srcfile1}" {debug nowarnings}] == -1 } {
37 if { [build_executable ${testfile}.exp ${exec2} "${srcfile2}" {debug nowarnings}] == -1} {
41 if { [build_executable ${testfile}.exp ${exec3} "${srcfile3}" {debug nowarnings}] == -1 } {
45 clean_restart ${exec1}
47 # Add an empty inferior space, switch to it, and load a main
49 gdb_test "add-inferior" "Added inferior 2.*" "add empty inferior 2"
50 gdb_test "inferior 2" "Switching to inferior 2.*" "switch to inferior 2"
51 gdb_test "file ${binfile2}" ".*" "load ${exec2} file in inferior 2"
53 # Add a new inferior space and load a main executable into it in one
55 gdb_test "add-inferior -exec ${binfile3}" \
56 "Added inferior 3.*" \
57 "add inferior 3 with -exec ${exec3}"
59 # Check that we have multiple spaces.
61 gdb_test "info inferiors" \
62 "Executable.*${exec3}.*${exec2}.*${exec1}.*"
64 # Test info inferiors with args
70 gdb_test_multiple "info inferior 2 3" "info inferior 2 3" {
71 -re ". 3 \[^\r\n\]*${exec3}" {
75 -re ". 2 \[^\r\n\]*${exec2}" {
79 -re ". 1 \[^\r\n\]*${exec1}" {
84 if { !$see1 && $see2 && $see3 } then {
85 pass "info inferior 2 3"
87 fail "info inferior 2 3"
96 gdb_test_multiple "info inferior 1-2" "info inferior 1-2" {
97 -re ". 3 \[^\r\n\]*${exec3}" {
101 -re ". 2 \[^\r\n\]*${exec2}" {
105 -re ". 1 \[^\r\n\]*${exec1}" {
109 -re "$gdb_prompt $" {
110 if { $see1 && $see2 && !$see3 } then {
111 pass "info inferior 1-2"
113 fail "info inferior 1-2"
118 # Test that we have multiple symbol tables.
120 gdb_test "inferior 1" ".*" "switch to inferior 1"
121 gdb_test "info functions commonfun" \
123 "'info functions commonfun' in inferior 1"
125 gdb_test "inferior 3" ".*" "switch to inferior 3"
126 gdb_test "info functions commonfun" \
128 "'info functions commonfun' in inferior 3"
130 gdb_test "inferior 1" ".*" "switch back to inferior 1"
132 gdb_test_no_output "set listsize 1"
134 gdb_test "list commonfun" "from hello.*" "list commonfun in hello"
136 gdb_test "print hglob" "1"
138 gdb_test "print glob" "92" "print glob (${exec1})"
141 gdb_test "inferior 3" ".*" "switch to inferior 3 to print globals"
143 gdb_test "print gglob" "2"
145 gdb_test "print glob" "45" "print glob (${exec3})"
147 gdb_test "list commonfun" "from goodbye.*" "list commonfun in goodbye"
150 # Let's run the hello program.
151 gdb_test "inferior 1" ".*" "switch to inferior 1 to run it"
153 if { ![runto_main] } then {
157 gdb_test "break hello" ".*"
158 gdb_test "continue" "Breakpoint \[0-9\].*, hello.*"
160 # Now let's remove the other two
162 gdb_test_no_output "remove-inferiors 2-3" "remove-inferiors 2-3"
168 gdb_test_multiple "info inferiors" "check remove-inferiors" {
169 -re ". 3 \[^\r\n\]*${exec3}" {
173 -re ". 2 \[^\r\n\]*${exec2}" {
177 -re ". 1 \[^\r\n\]*${exec1}" {
181 -re "$gdb_prompt $" {
182 if { $see1 && !$see2 && !$see3 } then {
183 pass "check remove-inferiors"
185 fail "check remove-inferiors"