+2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
+
+ * python/lib/gdb/commands/explore.py
+ (CompoundExplorer.explore_expr): Correct the name of a method
+ being invoked.
+ (ExploreTypeCommand.invoke): Add a missing 'return'.
+
2013-01-21 Tom Tromey <tromey@redhat.com>
* gdb_obstack.h (obconcat): Move declaration here, from...
return True
else:
if is_child:
- Explorer.returning_to_parent_value_message()
+ Explorer.return_to_parent_value()
else:
if is_child:
Explorer.return_to_parent_value_prompt()
if value is not None:
print ("'%s' is of type '%s'." % (arg_str, str(value.type)))
Explorer.explore_type(str(value.type), value.type, False)
+ return
raise gdb.GdbError(("'%s' is not a type or value in the current "
"context." % arg_str))
+2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
+
+ * gdb.python/py-explore.exp: Improve a test
+
2013-01-18 David Blaikie <dblaikie@gmail.com>
* gdb.base/label.c (main): Correct the type of the second
gdb_test_multiple " " "end cs.s exploration" {
-re ".*$enter_field_number_prompt" {
pass "end cs.s exploration"
- gdb_test_multiple "\0" "end cs exploration" {
- -re "$gdb_prompt" {
- pass "end cs exploration"
- }
- }
}
}
}
}
+ gdb_test_multiple "1" "explore cs.u" {
+ -re "[compound_description {cs.u} {union} {union SimpleUnion}].*.*[field_choices {i} {c} {f} {d}].*$enter_field_number_prompt" {
+ pass "explore cs.u"
+ gdb_test_multiple " " "end cs.u exploration" {
+ -re ".*$enter_field_number_prompt" {
+ pass "end cs.u exploration"
+ }
+ }
+ }
+ }
+ gdb_test_multiple "\0" "explore cs.u" {
+ -re "$gdb_prompt" {
+ pass "end cs exploration"
+ }
+ }
}
}