]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.python/py-events.py
Update Copyright year range in all files maintained by GDB.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.python / py-events.py
CommitLineData
ecd75fc8 1# Copyright (C) 2010-2014 Free Software Foundation, Inc.
c17a9e46
HZ
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 python pretty
17# printers.
18import gdb
19
20def signal_stop_handler (event):
21 if (isinstance (event, gdb.StopEvent)):
9325cb04 22 print ("event type: stop")
c17a9e46 23 if (isinstance (event, gdb.SignalEvent)):
9325cb04
PK
24 print ("stop reason: signal")
25 print ("stop signal: %s" % (event.stop_signal))
c17a9e46 26 if ( event.inferior_thread is not None) :
9325cb04 27 print ("thread num: %s" % (event.inferior_thread.num))
c17a9e46
HZ
28
29def breakpoint_stop_handler (event):
30 if (isinstance (event, gdb.StopEvent)):
9325cb04 31 print ("event type: stop")
c17a9e46 32 if (isinstance (event, gdb.BreakpointEvent)):
9325cb04
PK
33 print ("stop reason: breakpoint")
34 print ("first breakpoint number: %s" % (event.breakpoint.number))
6839b47f 35 for bp in event.breakpoints:
9325cb04 36 print ("breakpoint number: %s" % (bp.number))
c17a9e46 37 if ( event.inferior_thread is not None) :
9325cb04 38 print ("thread num: %s" % (event.inferior_thread.num))
c17a9e46 39 else:
9325cb04 40 print ("all threads stopped")
c17a9e46
HZ
41
42def exit_handler (event):
314bb8c3
DE
43 assert (isinstance (event, gdb.ExitedEvent))
44 print ("event type: exit")
9325cb04
PK
45 print ("exit code: %d" % (event.exit_code))
46 print ("exit inf: %d" % (event.inferior.num))
47 print ("dir ok: %s" % str('exit_code' in dir(event)))
c17a9e46
HZ
48
49def continue_handler (event):
314bb8c3
DE
50 assert (isinstance (event, gdb.ContinueEvent))
51 print ("event type: continue")
c17a9e46 52 if ( event.inferior_thread is not None) :
9325cb04 53 print ("thread num: %s" % (event.inferior_thread.num))
c17a9e46 54
20c168b5 55def new_objfile_handler (event):
314bb8c3
DE
56 assert (isinstance (event, gdb.NewObjFileEvent))
57 print ("event type: new_objfile")
58 print ("new objfile name: %s" % (event.new_objfile.filename))
20c168b5 59
c17a9e46
HZ
60class test_events (gdb.Command):
61 """Test events."""
62
63 def __init__ (self):
314bb8c3 64 gdb.Command.__init__ (self, "test-events", gdb.COMMAND_STACK)
c17a9e46
HZ
65
66 def invoke (self, arg, from_tty):
67 gdb.events.stop.connect (signal_stop_handler)
68 gdb.events.stop.connect (breakpoint_stop_handler)
69 gdb.events.exited.connect (exit_handler)
70 gdb.events.cont.connect (continue_handler)
9325cb04 71 print ("Event testers registered.")
c17a9e46
HZ
72
73test_events ()
20c168b5
KP
74
75class test_newobj_events (gdb.Command):
76 """NewObj events."""
77
78 def __init__ (self):
314bb8c3 79 gdb.Command.__init__ (self, "test-objfile-events", gdb.COMMAND_STACK)
20c168b5
KP
80
81 def invoke (self, arg, from_tty):
82 gdb.events.new_objfile.connect (new_objfile_handler)
314bb8c3 83 print ("Object file events registered.")
20c168b5
KP
84
85test_newobj_events ()