Home | History | Annotate | Download | only in gdb.python

Lines Matching refs:groups

31 # groups.
32 set groups {}
42 lappend groups $expect_out(1,string)
48 gdb_assert {[llength $groups] > 0} \
57 "python groups = list (arch.register_groups ())" \
58 "get register groups" 0
60 "python groups = map (lambda obj: obj.name, groups)" \
61 "convert groups to names" 0
64 gdb_test_multiple "python print (\"\\n\".join (groups))" \
65 "register groups from python" {
79 gdb_assert {[llength $py_groups] == [llength $groups]} \
80 "Same number of registers groups found"
83 for { set i 0 } { $i < [llength $groups] } { incr i } {
84 if {[lindex $groups $i] != [lindex $py_groups $i]} {
88 gdb_assert { $found_non_match == 0 } "all register groups match"