Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-mi-events.exp
CommitLineData
88b9d363 1# Copyright (C) 2008-2022 Free Software Foundation, Inc.
e7ea3ec7
CU
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 file is part of the GDB testsuite. It tests PR 19743.
17
18load_lib mi-support.exp
19set MIFLAGS "-i=mi2"
20
21gdb_exit
22if [mi_gdb_start] {
23 continue
24}
25
26standard_testfile
27set pyfile ${testfile}-gdb.py
28
29if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
5b362f04 30 untested "failed to compile"
e7ea3ec7
CU
31 return -1
32}
33
34if { [mi_skip_python_tests] } { continue }
35
36set remote_python_file [gdb_remote_download host ${srcdir}/${subdir}/${pyfile}]
37
38mi_delete_breakpoints
39mi_gdb_reinitialize_dir $srcdir/$subdir
40mi_gdb_test "set auto-load safe-path ${remote_python_file}" \
41 {.*\^done} \
42 "set safe-path"
43
44if [is_remote host] {
45 set filename ${testfile}
46 remote_download host ${binfile} ${filename}
47} else {
48 set filename ${binfile}
49}
50
51mi_gdb_test "-file-exec-and-symbols ${filename}" ".*\\^done" "file-exec-and-symbols operation"
b75d55d4
PA
52mi_gdb_load ${binfile}
53mi_runto_main
e7ea3ec7
CU
54
55
56# register the python event handlers with test-events command
57mi_gdb_test "test-events" \
58 ".*~\"Event testers registered.*\\^done" \
59 "register events"
60
61
5a069ab3
PA
62set lineno [gdb_get_line_number "i++;"]
63
e7ea3ec7 64# set a breakpoint into the for loop
5a069ab3 65mi_gdb_test "break ${srcfile}:$lineno" \
e7ea3ec7
CU
66 ".*Breakpoint $decimal at 0x\[0-9a-fA-F\]+: file .*${srcfile}.*\\\.*\\^done" \
67 "set the breakpoint"
68
69
70# resume the program
5a069ab3 71mi_execute_to "exec-continue" "breakpoint-hit" "main" "" ".*$srcfile" "$lineno" { "" "disp=\"keep\"" } "continue"
e7ea3ec7
CU
72
73
74# test the python event handlers execution. The following checks are performed:
75# - python continue handler is executed
76# - the continue handler prints "info breakpoints" output in console format
77# - breakpoint is hit and python stop handler is executed
78# - the stop handler prints "info breakpoints" output in console format
5a069ab3
PA
79
80mi_gdb_test "python print (stop_handler_str)" \
81".*stop_handler.*Num.*Type.*Disp.*Enb.*Address.*$decimal.*breakpoint.*keep.*y.* 0x\[0-9a-fA-F\]+.*${srcfile}.*" \
82"python stop handler ran"
83
84mi_gdb_test "python print (cont_handler_str)" \
85".*continue_handler.*Num.*Type.*Disp.*Enb.*Address.*$decimal.*breakpoint.*keep.*y.* 0x\[0-9a-fA-F\]+.*${srcfile}.*" \
86"python continue handler ran"
e7ea3ec7
CU
87
88mi_gdb_exit
This page took 0.739019 seconds and 4 git commands to generate.