wallace added inline comments.

================
Comment at: 
lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/bitset/TestDataFormatterGenericBitset.py:32-35
         for i in range(size):
             child = var.GetChildAtIndex(i)
             self.assertEqual(child.GetValueAsUnsigned(), self.primes[i],
                     "variable: %s, index: %d"%(name, size))
----------------
wallace wrote:
> What teemperor is saying is to something like:
> 
>   children = [ValueCheck(name="<something goes here>", summary='<same here>')]
>   for i in range(size):
>     children.append(
>   valobj = self.expect_var_path(
>             name,
>             type="std::bitset<" + size + ">", # you might need to change this 
> depending on the stdlib you use for each test
>             children=children,
>         )
> 
>   self.assertRegex(valobj.summary, r'^"hello"( strong=1)? weak=1$') # change 
> this for the actual summary of the object
Ugh, I made some mistakes

```
children = []
for i in range(size):
  children.append(
valobj = self.expect_var_path( // this will check the entire bitset and the 
children argument will check its children
          name,
          type="std::bitset<" + size + ">", // you might need to change this 
depending on the stdlib you use for each test
          children=children,
      )

self.assertRegex(valobj.summary, r'^"hello"( strong=1)? weak=1$') # change this 
for the actual summary of the object
```


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D112180/new/

https://reviews.llvm.org/D112180

_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to