Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [lldb][NFC] Remove unused imports in python tests | Raphael Isemann | 2019-08-02 | 1 | -3/+0 |
| | | | | llvm-svn: 367663 | ||||
* | [dotest] Clean up test folder clean-up | Pavel Labath | 2018-03-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: This patch implements a unified way of cleaning the build folder of each test. This is done by completely removing the build folder before each test, in the respective setUp() method. Previously, we were using a combination of several methods, each with it's own drawbacks: - nuking the entire build tree before running dotest: the issue here is that this did not take place if you ran dotest manually - running "make clean" before the main "make" target: this relied on the clean command being correctly implemented. This was usually true, but not always. - for files which were not produced by make, each python file was responsible for ensuring their deleting, using a variety of methods. With this approach, the previous methods become redundant. I remove the first two, since they are centralized. For the other various bits of clean-up code in python files, I indend to delete it when I come across it. Reviewers: aprantl Subscribers: emaste, ki.stfu, mgorny, eraman, lldb-commits Differential Revision: https://reviews.llvm.org/D44526 llvm-svn: 327703 | ||||
* | Fix TestTargetSymbolsAddCommand makefile | Pavel Labath | 2018-01-31 | 1 | -4/+5 |
| | | | | | | | | | We started passing the "all" target to make, which rendered the "localall" trick in this Makefile inoperable. I implement the strip step differently, and also reformat the Makefile. llvm-svn: 323855 | ||||
* | Fix TestTargetSymbolsAddCommand [getBuildArtifact refactor] | Pavel Labath | 2018-01-22 | 1 | -1/+1 |
| | | | | llvm-svn: 323086 | ||||
* | Wrap all references to build artifacts in the LLDB testsuite (NFC) | Adrian Prantl | 2018-01-19 | 1 | -2/+3 |
| | | | | | | | | | in TestBase::getBuildArtifact(). This NFC commit is in preparation for https://reviews.llvm.org/D42281 (compile the LLDB tests out-of-tree). Differential Revision: https://reviews.llvm.org/D42280 llvm-svn: 323007 | ||||
* | Extend 'target symbols add' to load symbols from a given module | Eugene Zemtsov | 2017-07-24 | 3 | -0/+70 |
Now -shlib flag can be provided alongside with names of symbols files: (lldb) target symbols add --shlib stripper-lib.so unstripper-lib.so This is helpful when default matching mechanisms by name and UUID can't find a module, and the user needs to explicitly specify which module the given symbol file belongs to. Differential Revision: https://reviews.llvm.org/D35607 llvm-svn: 308933 |