[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / ScriptInterpreter / Lua / lua-python.test
blob38b4986a66730841d90c8e99058e3adba648100b
1 # REQUIRES: python
2 # UNSUPPORTED: lldb-repro
4 # RUN: mkdir -p %t
5 # RUN: cd %t
6 # RUN: echo "int main() { return 0; }" | %clang_host -x c - -o a.out
7 # RUN: cat %s | %lldb 2>&1 | FileCheck %s
8 script -l lua --
9 target = lldb.debugger:CreateTarget("a.out")
10 print("target is valid:", tostring(target:IsValid()))
11 lldb.debugger:SetSelectedTarget(target)
12 quit
13 # CHECK: target is valid: true
14 script -l python --
15 print("selected target: {}".format(lldb.debugger.GetSelectedTarget()))
16 # CHECK: selected target: a.out