Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [lldb][NFC] Remove all `setUp` overrides that only call the parent ↵ | Raphael Isemann | 2019-12-13 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | implementation Summary: A lot of our tests copied the setUp code from our TestSampleTest.py: ``` def setUp(self): # Call super's setUp(). TestBase.setUp(self) ``` This code does nothing unless we actually do any setUp work in there, so let's remove all these method definitions. Reviewers: labath, JDevlieghere Reviewed By: labath Subscribers: lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D71454 | ||||
* | [lldb][NFC] Remove unused imports in python tests | Raphael Isemann | 2019-08-02 | 1 | -1/+0 |
| | | | | llvm-svn: 367663 | ||||
* | Fix tests on non-Darwin platforms. | Adrian Prantl | 2019-05-02 | 1 | -0/+4 |
| | | | | llvm-svn: 359846 | ||||
* | Hide runtime support values such as clang's __vla_expr from frame variable | Adrian Prantl | 2019-05-02 | 1 | -0/+47 |
by respecting the "artificial" attribute on variables. Function arguments that are artificial and useful to end-users are being whitelisted by the language runtime. <rdar://problem/45322477> Differential Revision: https://reviews.llvm.org/D61451 llvm-svn: 359841 |