Michael137 added inline comments.

================
Comment at: lldb/test/API/lang/cpp/unique-types2/TestUniqueTypes.py:1
+"""
+Test that we return only the requested template instantiation.
----------------
I think it would be good to test this with 
`-gsimple-template-names`/`-gno-simple-template-names`

You can pass in a dictionary into `self.build()` and override Makefile flags

E..g, in `lldb/test/API/lang/c/forward/TestForwardDeclaration.py` we do this 
for `-gdwarf-5`.

So you could have two `test_XXX` methods like:
```
def do_test(self, debug_flags):
    self.build(dictionary=debug_flags)
    ... actual test ...

def test_simple_template_name(self):
    do_test(self, dict(CFLAGS_EXTRAS="-gsimple-template-names")

def test_no_simple_template_name(self):
    do_test(self, dict(CFLAGS_EXTRAS="-gno-simple-template-names")
```


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D134378

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

Reply via email to