[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 ...
Revert "[lldb/test] Make some tests as XFAIL while I investigate the issue"This reverts commit 80589f272c200798b57a5151680a993bc2cc00a7.
[lldb/test] Make some tests as XFAIL while I investigate the issueThis is very likely to be caused by d71d1a947bee1247e952f22c13ad3ed3d041e36a.Signed-off-by: Med Ismail Bennani <medismail.bennani
[lldb/test] Make some tests as XFAIL while I investigate the issueThis is very likely to be caused by d71d1a947bee1247e952f22c13ad3ed3d041e36a.Signed-off-by: Med Ismail Bennani <[email protected]>
[lldb][gui] do not show the help window on first gui startupIt's rather annoying if it's there after every startup,and that 'Help (F6)' at the top should be enough to help peoplewho don't know.
[lldb][gui] do not show the help window on first gui startupIt's rather annoying if it's there after every startup,and that 'Help (F6)' at the top should be enough to help peoplewho don't know.Differential Revision: https://reviews.llvm.org/D122997
[LLDB] Skip flaky tests on Arm/AArch64 Linux botsFollowing LLDB tests fail randomly on LLDB Arm/AArch64 Linux buildbots.We still not have a reliable solution for these tests to passconsistently.
[LLDB] Skip flaky tests on Arm/AArch64 Linux botsFollowing LLDB tests fail randomly on LLDB Arm/AArch64 Linux buildbots.We still not have a reliable solution for these tests to passconsistently. I am marking them skipped for now.TestBreakpointCallbackCommandSource.pyTestIOHandlerResize.pyTestEditline.pyTestGuiViewLarge.pyTestGuiExpandThreadsTree.pyTestGuiBreakpoints.py
[lldb] [test] Update test status for NetBSD
[lldb][gui] use left/right in the source view to scrollI intentionally decided not to reset the column automaticallyanywhere, because I don't know where and if at all that should happen.There sho
[lldb][gui] use left/right in the source view to scrollI intentionally decided not to reset the column automaticallyanywhere, because I don't know where and if at all that should happen.There should be always an indication of being scrolled (too much)to the right, so I'll leave this to whoever has an opinion.Differential Revision: https://reviews.llvm.org/D85290
[lldb][gui] truncate long lines/names if neededWithout this, sources with long lines or variable names may overwritepanel frames, or even overrun to the following line. There's currentlyno way to
[lldb][gui] truncate long lines/names if neededWithout this, sources with long lines or variable names may overwritepanel frames, or even overrun to the following line. There's currentlyno way to scroll left/right in the views, so that should be addedto handle these cases.This commit includes fixing constness of some Window functions,and also makes PutCStringTruncated() consistent with the addedprintf-like variant to take the padding as the first argument (can'tadd it after the format to the printf-like function).Differential Revision: https://reviews.llvm.org/D85123