Using a debug build of llvm, and running ninja check-lldb I get the following results:
********************
Unresolved Tests (13):
lldb-api :: commands/expression/import-std-module/array/TestArrayFromStdModule.py
lldb-api :: commands/expression/import-std-module/conflicts/TestStdModuleWithConflicts.py
lldb-api :: commands/expression/import-std-module/deque-basic/TestDequeFromStdModule.py
lldb-api :: commands/expression/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardListFromStdModule.py
lldb-api :: commands/expression/import-std-module/forward_list/TestForwardListFromStdModule.py
lldb-api :: commands/expression/import-std-module/iterator/TestIteratorFromStdModule.py
lldb-api :: commands/expression/import-std-module/list/TestListFromStdModule.py
lldb-api :: commands/expression/import-std-module/non-module-type-separation/TestNonModuleTypeSeparation.py
lldb-api :: commands/expression/import-std-module/retry-with-std-module/TestRetryWithStdModule.py
lldb-api :: commands/expression/import-std-module/shared_ptr-dbg-info-content/TestSharedPtrDbgInfoContentFromStdModule.py
lldb-api :: commands/expression/import-std-module/vector-of-vectors/TestVectorOfVectorsFromStdModule.py
lldb-api :: commands/expression/import-std-module/weak_ptr-dbg-info-content/TestDbgInfoContentWeakPtrFromStdModule.py
lldb-api :: commands/expression/import-std-module/weak_ptr/TestWeakPtrFromStdModule.py
********************
Timed Out Tests (4):
lldb-api :: commands/expression/import-std-module/basic/TestImportStdModule.py
lldb-api :: commands/expression/import-std-module/shared_ptr/TestSharedPtrFromStdModule.py
lldb-api :: tools/lldb-server/TestGdbRemoteFork.py
lldb-api :: tools/lldb-server/TestLldbGdbServer.py
********************
Failed Tests (3):
lldb-api :: commands/expression/import-std-module/deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py
lldb-api :: commands/expression/import-std-module/list-dbg-info-content/TestDbgInfoContentListFromStdModule.py
lldb-api :: commands/expression/import-std-module/vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py
Anyone else seeing these?
Can we increase the timeout on some of these? (though, also, the lldb tests do seem to take quite a while, perhaps there are ways we could speed them up?)
Hmm, even the tests that arenât timing out are taking a very long time - I tried the import-std-module/array test, and it would take several minutes.
I tried debugging the dotest, and each expression evaluation paused visibly - maybe a second or two.
but if I run the same lldb on the command line on the test the commands do still fail (the test is testing lldbâs ability to load the std library pcm - and I assume I donât have one to load on Linux - so I assume the test shouldnât be enabled, but I was looking at the array test expecting to find it disabled and find a way to disable the deque, etc, /failing/ tests the same way, but now it looks like theyâre all running and failing, but not sure why they fail in different ways) but the commands run quite quickly/reasonably.
Anyone have ideas about any of this?
@labath ?