[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://r
[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://reviews.llvm.org/D128077
show more ...
[lldb] Adjust Clang version requirements for tail_call_frames testsThose tests are all failing for older Clang versions. This is adding therespective test decorators for the passing Clang versions
[lldb] Adjust Clang version requirements for tail_call_frames testsThose tests are all failing for older Clang versions. This is adding therespective test decorators for the passing Clang versions to get the recentlyrevived matrix bot green.
[lldb] Use assertIn/NotIn over assertTrue/False (NFC)For improved failure messages, use `assertIn` over `assertTrue`.Differential Revision: https://reviews.llvm.org/D96095
[lldb/DWARF] Add support for pre-standard GNU call site attributesSummary:The code changes are very straight-forward -- just handle both DW_AT_GNUand DW_AT_call versions of all tags and attribute
[lldb/DWARF] Add support for pre-standard GNU call site attributesSummary:The code changes are very straight-forward -- just handle both DW_AT_GNUand DW_AT_call versions of all tags and attributes. There is just onesmall gotcha: in the GNU version, DW_AT_low_pc was used both for the"return pc" and the "call pc" values, depending on whether the tag wasdescribing a tail call, while the official scheme uses differentattributes for the two things.Reviewers: vsk, dblaikieSubscribers: lldb-commitsTags: #lldbDifferential Revision: https://reviews.llvm.org/D80519
[lldb][test] Remove symlink for API tests.Summary: Moves lldbsuite tests to lldb/test/API.This is a largely mechanical change, moved with the following steps:```rm lldb/test/API/testcasesmkdi
[lldb][test] Remove symlink for API tests.Summary: Moves lldbsuite tests to lldb/test/API.This is a largely mechanical change, moved with the following steps:```rm lldb/test/API/testcasesmkdir -p lldb/test/API/{test_runner/test,tools/lldb-{server,vscode}}mv lldb/packages/Python/lldbsuite/test/test_runner/test lldb/test/API/test_runnerfor d in $(find lldb/packages/Python/lldbsuite/test/* -maxdepth 0 -type d | egrep -v "make|plugins|test_runner|tools"); do mv $d lldb/test/API; donefor d in $(find lldb/packages/Python/lldbsuite/test/tools/lldb-vscode -maxdepth 1 -mindepth 1 | grep -v ".py"); do mv $d lldb/test/API/tools/lldb-vscode; donefor d in $(find lldb/packages/Python/lldbsuite/test/tools/lldb-server -maxdepth 1 -mindepth 1 | egrep -v "gdbremote_testcase.py|lldbgdbserverutils.py|socket_packet_pump.py"); do mv $d lldb/test/API/tools/lldb-server; done```lldb/packages/Python/lldbsuite/__init__.py and lldb/test/API/lit.cfg.py were also updated with the new directory structure.Reviewers: labath, JDevlieghereTags: #lldbDifferential Revision: https://reviews.llvm.org/D71151