summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/ScriptInterpreter/Python/command_relative_import.test
AgeCommit message (Collapse)Author
2021-10-09Revert a LIT typo fix in a RUN lineQiu Chaofan
Commit 573531f changes the behavior of the test, revert it back.
2021-10-09Fix typo of colon to semicolon in lit testsQiu Chaofan
2021-07-09[lldb] Drop REQUIRES where redundant because of lit.local.cfgJonas Devlieghere
2020-10-27[lldb] Support Python imports relative the to the current file being sourcedJonas Devlieghere
Make it possible to use a relative path in command script import to the location of the file being sourced. This allows the user to put Python scripts next to LLDB command files and importing them without having to specify an absolute path. To enable this behavior pass `-c` to `command script import`. The argument can only be used when sourcing the command from a file. rdar://68310384 Differential revision: https://reviews.llvm.org/D89334