diff options
author | Paul Koning <pkoning@equallogic.com> | 2011-10-28 14:49:21 +0000 |
---|---|---|
committer | Paul Koning <pkoning@equallogic.com> | 2011-10-28 14:49:21 +0000 |
commit | d6a5d40c767d773effa679116286c2b7e39e80af (patch) | |
tree | cc6c68829a9426ea991928fec19bf953bfbc484b /gdb/testsuite/gdb.python | |
parent | 0aaaf06393e8ba1f48281c928ab33099e1bc84d6 (diff) | |
download | gdb-d6a5d40c767d773effa679116286c2b7e39e80af.zip gdb-d6a5d40c767d773effa679116286c2b7e39e80af.tar.gz gdb-d6a5d40c767d773effa679116286c2b7e39e80af.tar.bz2 |
* gdb.python/lib-types.exp (deep_items): Rename from deepitems.
Diffstat (limited to 'gdb/testsuite/gdb.python')
-rw-r--r-- | gdb/testsuite/gdb.python/lib-types.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.python/lib-types.exp b/gdb/testsuite/gdb.python/lib-types.exp index e3a65ab..c48d547 100644 --- a/gdb/testsuite/gdb.python/lib-types.exp +++ b/gdb/testsuite/gdb.python/lib-types.exp @@ -139,7 +139,7 @@ gdb_test_no_output "python enum1_list = enum1_dict.items ()" gdb_test_no_output "python enum1_list.sort ()" gdb_test "python print enum1_list" {\[\('A', 0L\), \('B', 1L\), \('C', 2L\)\]} -# test deepitems +# test deep_items gdb_test_no_output "python struct_a = gdb.lookup_type ('struct A')" gdb_test "python print struct_a.keys ()" {\['a', '', 'c', ''\]} -gdb_test "python print \[k for k,v in gdb.types.deepitems(struct_a)\]" {\['a', 'b0', 'b1', 'bb0', 'bb1', 'bbb0', 'bbb1', 'c', 'dd0', 'dd1', 'd2', 'd3'\]} +gdb_test "python print \[k for k,v in gdb.types.deep_items(struct_a)\]" {\['a', 'b0', 'b1', 'bb0', 'bb1', 'bbb0', 'bbb1', 'c', 'dd0', 'dd1', 'd2', 'd3'\]} |