[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] Use assertState in more tests (NFC)Follow to D127355, converting more `assertEquals` to `assertState`.Differential Revision: https://reviews.llvm.org/D127378
Revert "Revert "Reset the wakeup timeout when we re-enter the continue wait.""This reverts commit 82a38837150099288a1262391ef43e1fd69ffde4.The original version had a copy-paste error: using the I
Revert "Revert "Reset the wakeup timeout when we re-enter the continue wait.""This reverts commit 82a38837150099288a1262391ef43e1fd69ffde4.The original version had a copy-paste error: using the Interrupt timeoutfor the ResumeSynchronous wait, which is clearly wrong. This error wouldhave been evident with real use, but the interrupt is long enough that itonly caused one testsuite failure (in the Swift fork).Anyway, I found that mistake and fixed it and checked all the other placeswhere I had to plumb through a timeout, and added a test with a shortinterrupt timeout stepping over a function that takes 3x the interrupt timeoutto complete, so that should detect a similar mistake in the future.