Summary:
This previous fix https://github.com/llvm-mirror/lldb/commit/
5469bda296c183d1b6bf74597c88c9ed667b3145 did not have a test since we did not have a reproducer.
This is related to how formatters deal with pointers and references. The added tests both the new behavior and covers the previous bug fix as well.
Differential Revision: https://reviews.llvm.org/D60588
llvm-svn: 359118
'[2] = ', '3',
'[3] = ', '4'])
+ ListPtr = self.frame().FindVariable("list_ptr")
+ self.assertTrue(ListPtr.GetChildAtIndex(
+ 0).GetValueAsUnsigned(0) == 1, "[0] = 1")
+
# check that MightHaveChildren() gets it right
self.assertTrue(
self.frame().FindVariable("numbers_list").MightHaveChildren(),
int main()
{
int_list numbers_list;
-
+ std::list<int>* list_ptr = &numbers_list;
+
printf("// Set break point at this line.");
(numbers_list.push_back(0x12345678));
(numbers_list.push_back(0x11223344));
cpp_category_sp,
lldb_private::formatters::LibcxxStdListSyntheticFrontEndCreator,
"libc++ std::list synthetic children",
- ConstString("^std::__[[:alnum:]]+::list<.+>(( )?&)?$"), stl_synth_flags,
+ ConstString("^std::__[[:alnum:]]+::list<.+>(( )?&)?$"), stl_deref_flags,
true);
AddCXXSynthetic(
cpp_category_sp,