testsuite: refactor spawn and wait for attach
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.multi / multi-attach.exp
1 # This testcase is part of GDB, the GNU debugger.
2
3 # Copyright 2007-2014 Free Software Foundation, Inc.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 # Test attaching to multiple threaded programs.
19
20 standard_testfile
21
22 # We need to use TCL's exec to get the pid.
23 if [is_remote target] then {
24 return 0
25 }
26
27 if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug additional_flags=-lpthread}]} {
28 return -1
29 }
30
31 # Start the programs running and then wait for a bit, to be sure that
32 # they can be attached to.
33
34 set pid_list [spawn_wait_for_attach [list $binfile $binfile]]
35 set testpid1 [lindex $pid_list 0]
36 set testpid2 [lindex $pid_list 1]
37
38 gdb_test "attach $testpid1" \
39 "Attaching to program: .*, process $testpid1.*(in|at).*" \
40 "attach to program 1"
41 gdb_test "backtrace" ".*main.*" "backtrace 1"
42
43 gdb_test "add-inferior -exec $binfile" \
44 "Added inferior 2.*" \
45 "add second inferior"
46 gdb_test "inferior 2" ".*Switching to inferior 2.*" "switch to second inferior"
47
48 gdb_test "attach $testpid2" \
49 "Attaching to program: .*, process $testpid2.*(in|at).*" \
50 "attach to program 2"
51 gdb_test "backtrace" ".*main.*" "backtrace 2"
52
53 gdb_test "kill" "" "kill inferior 2" "Kill the program being debugged.*" "y"
54 gdb_test "inferior 1" ".*Switching to inferior 1.*"
55 gdb_test "kill" "" "kill inferior 1" "Kill the program being debugged.*" "y"
This page took 0.033411 seconds and 5 git commands to generate.