summaryrefslogtreecommitdiff
path: root/Lib/test/test_gdb.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_gdb.py')
-rw-r--r--Lib/test/test_gdb.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
index 247c3adeec..681a1ee6cc 100644
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -856,13 +856,12 @@ id(42)
def __init__(self):
super().__init__() # wrapper_call()
+ id("first break point")
l = MyList()
''')
# Verify with "py-bt":
gdb_output = self.get_stack_trace(cmd,
- breakpoint='wrapper_call',
- cmds_after_breakpoint=['py-bt'],
- )
+ cmds_after_breakpoint=['break wrapper_call', 'continue', 'py-bt'])
self.assertIn("<method-wrapper '__init__' of MyList object at ",
gdb_output)