Make gdb.selected_thread().inferior return a new reference
thpy_get_inferior function should return a new reference to the existing inferior object, and therefore should increment its refcount. Fixed bug looks like this. If multiple time call gdb.selected_thread ().inferior, gdb throws exception: (gdb) pi gdb.selected_thread().inferior <gdb.Inferior object at 0x7f1952bea698> (gdb) pi gdb.selected_thread().inferior Python Exception <type 'exceptions.AttributeError'> 'NoneType' object has no attribute 'inferior': Error while executing Python code. (gdb) info threads Id Target Id Frame * 1 Thread 0x7f54f0474740 (LWP 584) "mc" 0x00007f54ef055c33 in
This commit is contained in:
parent
d91f0b20e5
commit
484d8d361d
4 changed files with 22 additions and 0 deletions
|
@ -51,6 +51,15 @@ gdb_test "python print(seen_a_thread)" "True"
|
|||
|
||||
# Test basic gdb.Inferior attributes and methods.
|
||||
|
||||
# Make sure that InferiorThread.inferior returns a new reference (see PR 21213).
|
||||
|
||||
gdb_py_test_silent_cmd "python gdb.selected_thread ().inferior" "test InferiorThread.inferior 1" 1
|
||||
gdb_py_test_silent_cmd "python gdb.selected_thread ().inferior" "test InferiorThread.inferior 2" 1
|
||||
gdb_test_no_output "python import gc; gc.collect()" "call Python garbage collection"
|
||||
gdb_py_test_silent_cmd "python gdb.selected_thread ().inferior" "test InferiorThread.inferior 3" 1
|
||||
gdb_py_test_silent_cmd "python gdb.selected_thread ().inferior" "test InferiorThread.inferior 4" 1
|
||||
|
||||
|
||||
gdb_py_test_silent_cmd "python t0 = gdb.selected_thread ()" "test gdb.selected_thread" 1
|
||||
gdb_test "python print (t0)" "\\<gdb.InferiorThread object at 0x\[\[:xdigit:\]\]+>" "verify InferiorThread object"
|
||||
gdb_test "python print ('result = %s' % t0.num)" " = 1" "test InferiorThread.num"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue