aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.python/py-cmd-prompt.py
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.python/py-cmd-prompt.py')
-rw-r--r--gdb/testsuite/gdb.python/py-cmd-prompt.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/gdb/testsuite/gdb.python/py-cmd-prompt.py b/gdb/testsuite/gdb.python/py-cmd-prompt.py
index ac1fdec..b80a0c9 100644
--- a/gdb/testsuite/gdb.python/py-cmd-prompt.py
+++ b/gdb/testsuite/gdb.python/py-cmd-prompt.py
@@ -15,6 +15,7 @@
import gdb
+
class MyListener:
def __init__(self):
gdb.events.new_objfile.connect(self.handle_new_objfile_event)
@@ -25,12 +26,13 @@ class MyListener:
if self.processed_objfile:
return
- print('loading ' + event.new_objfile.filename)
+ print("loading " + event.new_objfile.filename)
self.processed_objfile = True
- gdb.execute('add-inferior -no-connection')
- gdb.execute('inferior 2')
- gdb.execute('target remote ' + self.port)
- gdb.execute('inferior 1')
+ gdb.execute("add-inferior -no-connection")
+ gdb.execute("inferior 2")
+ gdb.execute("target remote " + self.port)
+ gdb.execute("inferior 1")
+
the_listener = MyListener()