Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add arm64_32 support to lldb, an ILP32 codegen | Jason Molenda | 2019-10-16 | 1 | -2/+2 |
| | | | | | | | | | | that runs on arm64 ISA targets, specifically Apple watches. Differential Revision: https://reviews.llvm.org/D68858 llvm-svn: 375032 | ||||
* | Canonicalize variable usage in testsuite Makefiles | Adrian Prantl | 2019-09-25 | 1 | -1/+1 |
| | | | | | | | | | | | | This test streamlines our use of variables that are expected by Makefile.rules throughout the test suite. Mostly it replaced potentially dangerous overrides and updates of variables like CFLAGS with safe assignments to variables reserved for this purpose like CFLAGS_EXTRAS. Differential Revision: https://reviews.llvm.org/D67984 llvm-svn: 372795 | ||||
* | [dotest] Avoid the need for LEVEL= makefile boilerplate | Pavel Labath | 2019-09-04 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | Summary: Instead of each test case knowing its depth relative to the test root, we can just have dotest add the folder containing Makefile.rules to the include path. This was motivated by r370616, though I have been wanting to do this ever since we moved to building tests out-of-tree. The only manually modified files in this patch are lldbinline.py and plugins/builder_base.py. The rest of the patch has been produced by this shell command: find . \( -name Makefile -o -name '*.mk' \) -exec sed --in-place -e '/LEVEL *:\?=/d' -e '1,2{/^$/d}' -e 's,\$(LEVEL)/,,' {} + Reviewers: teemperor, aprantl, espindola, jfb Subscribers: emaste, javed.absar, arichardson, christof, arphaman, lldb-commits Differential Revision: https://reviews.llvm.org/D67083 llvm-svn: 370845 | ||||
* | [lldb][NFC] Remove unused imports in python tests | Raphael Isemann | 2019-08-02 | 1 | -2/+0 |
| | | | | llvm-svn: 367663 | ||||
* | Don't run TestBreakpointIt.py on arm64 devices; | Jason Molenda | 2018-10-16 | 1 | -0/+2 |
| | | | | | | it is armv7 specific. llvm-svn: 344633 | ||||
* | Wrap all references to build artifacts in the LLDB testsuite (NFC) | Adrian Prantl | 2018-01-19 | 1 | -2/+2 |
| | | | | | | | | | 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 | ||||
* | Move StopInfoOverride callback to the new architecture plugin | Pavel Labath | 2017-10-25 | 3 | -0/+65 |
This creates a new Architecture plugin and moves the stop info override callback to this place. The motivation for this is to remove complex dependencies from the ArchSpec class because it is used in a lot of places that (should) know nothing about Process instances and StopInfo objects. I also add a test for the functionality covered by the override callback. Differential Revision: https://reviews.llvm.org/D31172 llvm-svn: 316609 |