summaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/stl/Makefile
AgeCommit message (Collapse)Author
2024-10-16[lldb] Use system c++ lib for LLDB STL tests (#112598)Haowei
This change partially reverts #112357 to avoid test failures on machines which do not have gcc installed.
2024-10-16[lldb][test] Fix TestStdCXXDisassembly test (#112357)Dmitry Vasilyev
The patch #98694 was not enough. This test is still failed on the buildbot https://lab.llvm.org/staging/#/builders/195/builds/4438 Use `USE_LIBSTDCPP := 1` instead for non Darwin OS and skip the test if libstdc++.so is missing.
2024-10-15[lldb][test] Fix TestStdCXXDisassembly test for case when tests are linked ↵Vladislav Dzhidzhoev
with libc++ statically (#98694) This is to fix buildbot failure https://lab.llvm.org/staging/#/builders/195/builds/4255. The test expects 'libstdc++' or 'libc++' SO module in the module list. In case when static linking with libc++ is on by default, none of them may be present. Thus, USE_SYSTEM_STDLIB is added to ensure the presence of any of them. --------- Co-authored-by: Vladimir Vereschaka <vvereschaka@accesssoftek.com>
2022-06-30[LLDB] Fix TestSTL.py Makefile to remove -gdwarf O0Muhammad Omair Javaid
This is a follow up to my previous commit where TestSTL.py got broken due to 9c6e04359282e9051f7b2744b99266ece32db001. Now that we force dwarf symbols by default on windows we dont need to specifically put -gdwarf O0 in debug flags for this test.
2022-06-30[LLDB] Fix TestSTL.py on WindowsMuhammad Omair Javaid
TestSTL.py was broken by 9c6e04359282e9051f7b2744b99266ece32db001. This patch fixes it with changes to its Makefile.
2020-02-11[lldb][test] Remove symlink for API tests.Jordan Rupprecht
Summary: Moves lldbsuite tests to lldb/test/API. This is a largely mechanical change, moved with the following steps: ``` rm lldb/test/API/testcases mkdir -p lldb/test/API/{test_runner/test,tools/lldb-{server,vscode}} mv lldb/packages/Python/lldbsuite/test/test_runner/test lldb/test/API/test_runner for 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; done for 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; done for 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, JDevlieghere Tags: #lldb Differential Revision: https://reviews.llvm.org/D71151