llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Dave Lee (kastiglione) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/178717.diff 2 Files Affected: - (modified) lldb/source/Target/TargetProperties.td (+1-1) - (modified) lldb/test/Shell/Settings/TestChildDepthTruncation.test (+8-5) ``````````diff diff --git a/lldb/source/Target/TargetProperties.td b/lldb/source/Target/TargetProperties.td index e6cd48a9d3dad..b8ac3660fb2d7 100644 --- a/lldb/source/Target/TargetProperties.td +++ b/lldb/source/Target/TargetProperties.td @@ -99,7 +99,7 @@ let Definition = "target" in { DefaultUnsignedValue<24>, Desc<"Maximum number of children to expand in any level of depth.">; def MaxChildrenDepth: Property<"max-children-depth", "UInt64">, - DefaultUnsignedValue<4>, + DefaultUnsignedValue<5>, Desc<"Maximum depth to expand children.">; def MaxSummaryLength: Property<"max-string-summary-length", "UInt64">, DefaultUnsignedValue<1024>, diff --git a/lldb/test/Shell/Settings/TestChildDepthTruncation.test b/lldb/test/Shell/Settings/TestChildDepthTruncation.test index 7e4fbbef9e458..b09f98ebd1a5a 100644 --- a/lldb/test/Shell/Settings/TestChildDepthTruncation.test +++ b/lldb/test/Shell/Settings/TestChildDepthTruncation.test @@ -18,15 +18,18 @@ #--- main.cpp struct L1 { - int w; + int a; struct L2 { - int x; + int b; struct L3 { - int y; + int c; struct L4 { - int z; + int d; struct L5 { - int a; + int e; + struct L6 { + int f; + } l6; } l5; } l4; } l3; `````````` </details> https://github.com/llvm/llvm-project/pull/178717 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
