binutils-gdb/gdb/testsuite/gdb.python/py-selected-context.py
Tom de Vries 98c740fa46 [gdb/testsuite] Fix flake8 error in gdb.python/py-selected-context.py
We currently are running into a flake8 error:
...
$ pre-commit run --all-files flake8
flake8..................................................................Failed
- hook id: flake8
- exit code: 1

gdb/testsuite/gdb.python/py-selected-context.py:24:5: \
  F824 `global event_throws_error` is unused: name is never assigned in scope
...

Fix this by dropping the unnecessary "global event_throws_error".

Tested on x86_64-linux.
2026-03-05 16:45:48 +01:00

57 lines
1.9 KiB
Python

# Copyright (C) 2026 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import gdb
event_throws_error = False
def gdb_selected_context_handler(event):
assert isinstance(event, gdb.SelectedContextEvent)
if event_throws_error:
raise gdb.GdbError("error from gdb_selected_context_handler")
else:
print("event type: selected-context")
assert isinstance(event.inferior, gdb.Inferior)
print(" Inferior: %d" % (event.inferior.num))
if event.thread is None:
thr = "None"
else:
assert isinstance(event.thread, gdb.InferiorThread)
thr = "%d.%d" % (event.thread.inferior.num, event.thread.num)
print(" Thread: %s" % (thr))
if event.frame is None:
frame = "None"
else:
assert isinstance(event.frame, gdb.Frame)
frame = "#%d" % (event.frame.level())
print(" Frame: %s" % (frame))
class test_selected_context(gdb.Command):
"""Test GDB's Selected Context Event."""
def __init__(self):
gdb.Command.__init__(self, "test-selected-context-event", gdb.COMMAND_USER)
def invoke(self, arg, from_tty):
gdb.events.selected_context.connect(gdb_selected_context_handler)
print("GDB selected-context event registered.")
test_selected_context()
print("DONE")