diff options
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_value.py')
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_value.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_value.py b/lldb/test/python_api/default-constructor/sb_value.py index c2b90e59f39..715ba1ce493 100644 --- a/lldb/test/python_api/default-constructor/sb_value.py +++ b/lldb/test/python_api/default-constructor/sb_value.py @@ -33,3 +33,5 @@ def fuzz_obj(obj): obj.GetDescription(stream) obj.GetExpressionPath(stream) obj.GetExpressionPath(stream, True) + for child_val in obj: + print child_val |