Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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] Enable debugging of binaries with mixed (splitted/regular) dwarf | Davide Italiano | 2018-01-31 | 1 | -0/+10 |
| | | | | | | | This recommits the patch, now that I verified that the bot instability is due to something else. Sorry for the noise. llvm-svn: 323879 | ||||
* | Revert "[lldb] Enable debugging of binaries with mixed (splitted/regular) dwarf" | Davide Italiano | 2018-01-31 | 1 | -10/+0 |
| | | | | | | It might have caused some instability on the bots. llvm-svn: 323845 | ||||
* | [lldb] Enable debugging of binaries with mixed (splitted/regular) dwarf | Alexander Shaposhnikov | 2018-01-30 | 1 | -0/+10 |
Initialize the default value of SymbolFileDWARF uuid with the appropriately shifted DW_INVALID_OFFSET constant. This change fixes the collision in the computation of DIE uid (inside DIERef::GetUID) and incorrect CompileUnit lookup (because of the misleading cu_offset value). Test plan: make check-lldb Differential revision: https://reviews.llvm.org/D42563 llvm-svn: 323832 |