[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] Skip two lldb tests on Windows because they are flakyThese tests work fine with VS2017, but become more flaky with VS2019 and the buildbot is about to get upgraded.Differential Revision: h
[lldb] Skip two lldb tests on Windows because they are flakyThese tests work fine with VS2017, but become more flaky with VS2019 and the buildbot is about to get upgraded.Differential Revision: https://reviews.llvm.org/D114907
[lldb/test] Clean up TestThreadSpecificBpPlusCondition inferiorThe test had a race that could cause two threads to end up with the same"thread local" value. I believe this would not cause the test
[lldb/test] Clean up TestThreadSpecificBpPlusCondition inferiorThe test had a race that could cause two threads to end up with the same"thread local" value. I believe this would not cause the test to fail,but it could cause it to succeed even when the functionality is broken.The new implementation removes this uncertainty, and removes a lot ofcruft left over from the time this test was written using pthreads.
[lldb] Convert more assertTrue to assertEqual (NFC)Follow up to D95813, this converts multiline assertTrue to assertEqual.Differential Revision: https://reviews.llvm.org/D95899
[lldb] [test] Update test status for NetBSD
[lldb] [test] Reenable two passing tests on FreeBSD[Reenable TestReproducerAttach and TestThreadSpecificBpPlusConditionon FreeBSD -- both seem to pass correctly now.
[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