OSDN Git Service

2012-01-16 Pedro Alves <palves@redhat.com>
[pf3gnuchains/pf3gnuchains4x.git] / gdb / testsuite / gdb.mi / mi-pending.exp
1 # Copyright 2007-2012 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 load_lib mi-support.exp
17 set MIFLAGS "-i=mi"
18
19 #
20 # test running programs
21 #
22
23 if {[skip_shlib_tests]} {
24     return 0
25 }
26
27 set testfile "mi-pending"
28 set libfile "mi-pendshr"
29 set srcfile $testfile.c
30 set libsrc  $srcdir/$subdir/$libfile.c
31 set binfile $objdir/$subdir/$testfile
32 set lib_sl  $objdir/$subdir/$libfile.sl
33
34 set lib_opts  debug
35 set exec_opts [list debug shlib=$lib_sl]
36
37 if [get_compiler_info ${binfile}] {
38     return -1
39 }
40
41 if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != ""
42      || [gdb_compile $srcdir/$subdir/$srcfile $binfile executable $exec_opts] != ""} {
43     untested "Could not compile either $libsrc or $srcdir/$subdir/$srcfile."
44     return -1
45 }
46
47 # Start with a fresh gdb.
48
49 gdb_exit
50 mi_gdb_start
51 mi_gdb_reinitialize_dir $srcdir/$subdir
52 mi_gdb_load ${binfile}
53 mi_load_shlibs $lib_sl
54
55 # Set pending breakpoint via MI
56 mi_gdb_test "-break-insert -f pendfunc1" \
57     ".*\\^done,bkpt=\{number=\"1\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\",addr=\"<PENDING>\",pending=\"pendfunc1\",times=\"0\",original-location=\"pendfunc1\"\}"\
58     "MI pending breakpoint on pendfunc1"
59
60 mi_run_cmd
61 mi_expect_stop "breakpoint-hit" "pendfunc1" ".*" ".*" ".*" \
62     { "" "disp=\"keep\"" } \
63     "Run till MI pending breakpoint on pendfunc1"