summaryrefslogtreecommitdiff
path: root/lldb/test/API/lua_api/TestFileHandle.lua
AgeCommit message (Collapse)Author
2024-11-08[lldb] Fix TestFileHandle.luaJonas Devlieghere
- Explicitly create an `SBFile`. - Add missing call to `close`. - Use `SetErrorFile` in TestLegacyFileErr.
2024-02-16[lldb] Replace assertEquals with assertEqual (NFC) (#82073)Jonas Devlieghere
assertEquals is a deprecated alias for assertEqual and has been removed in Python 3.12. This wasn't an issue previously because we used a vendored version of the unittest module. Now that we use the built-in version this gets updated together with the Python version used to run the test suite.
2023-01-25[lldb][test] Replace use of p with expression (NFC)Dave Lee
In API tests, replace use of the `p` alias with the `expression` command. To avoid conflating tests of the alias with tests of the expression command, this patch canonicalizes to the use `expression`. Differential Revision: https://reviews.llvm.org/D141539
2021-10-12[lldb/lua] Supplement Lua bindings for lldb moduleSiger Yang
Add necessary typemaps for Lua bindings, together with some other files. Signed-off-by: Siger Yang <sigeryeung@gmail.com> Reviewed By: tammela Differential Revision: https://reviews.llvm.org/D108090