Allow Python notification of new object-file loadings.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-events.exp
CommitLineData
c17a9e46
HZ
1# Copyright (C) 2010, 2011 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
c17a9e46
HZ
16if $tracelevel then {
17 strace $tracelevel
18}
19
20load_lib gdb-python.exp
21
20c168b5
KP
22set libfile "py-events-shlib"
23set libsrc $srcdir/$subdir/$libfile.c
24set lib_sl $objdir/$subdir/$libfile.so
25set lib_opts debug
26
c17a9e46
HZ
27set testfile "py-events"
28set srcfile ${testfile}.c
29set binfile ${objdir}/${subdir}/${testfile}
20c168b5 30set exec_opts [list debug shlib=$lib_sl]
c17a9e46
HZ
31set pyfile ${srcdir}/${subdir}/${testfile}.py
32
20c168b5 33if [get_compiler_info ${binfile}] {
c17a9e46
HZ
34 return -1
35}
36
20c168b5
KP
37if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != ""
38 || [gdb_compile $srcdir/$subdir/$srcfile $binfile executable $exec_opts] != ""} {
39 untested "Could not compile either $libsrc or $srcdir/$subdir/$srcfile."
40 return -1
41}
42
43# Start with a fresh gdb.
44clean_restart ${testfile}
45
c17a9e46
HZ
46if { [skip_python_tests] } { continue }
47
48gdb_test_no_output "python execfile ('${pyfile}')" ""
49
20c168b5
KP
50gdb_test "Test_Newobj_Events" "New ObjectFile Event tester registered." "Register new objfile event handler"
51
52gdb_breakpoint "main" {temporary}
53
54gdb_test "run" ".*event type: new_objfile.*new objfile name.*" "New objfile notification"
c17a9e46 55
cb6be26b
KP
56gdb_test_no_output "set detach-on-fork off" ""
57
c17a9e46
HZ
58gdb_test "Test_Events" "Event testers registered."
59
6839b47f 60gdb_breakpoint "first"
c17a9e46
HZ
61gdb_breakpoint "first"
62
63# Test continue event and breakpoint stop event
64gdb_test "continue" ".*event type: continue.*
65.*event type: stop.*
66.*stop reason: breakpoint.*
6839b47f 67.*first breakpoint number: 2.*
c17a9e46 68.*breakpoint number: 2.*
6839b47f 69.*breakpoint number: 3.*
c17a9e46
HZ
70all threads stopped"
71
72#test exited event.
73gdb_test "continue" ".*event type: continue.*
74.*event type: exit.*
cb6be26b
KP
75.*exit code: 12.*
76.*exit inf: 1.*" "Inferior 1 terminated."
77
78gdb_test "inferior 2" ".*Switching to inferior 2.*"
79gdb_test "continue" ".*event type: continue.*
80.*event type: exit.*
81.*exit code: 12.*
82.*exit inf: 2.*" "Inferior 2 terminated."
This page took 0.101124 seconds and 4 git commands to generate.