[Transforms] Silence a warning in SROA.cpp (NFC)
[llvm-project.git] / lldb / test / Shell / ScriptInterpreter / Lua / lua-python.test
blobb81bddc25177ae11329a924bb13b30d2892c8540
1 # REQUIRES: python
3 # RUN: mkdir -p %t
4 # RUN: cd %t
5 # RUN: echo "int main() { return 0; }" | %clang_host -x c - -o a.out
6 # RUN: cat %s | %lldb 2>&1 | FileCheck %s
7 script -l lua --
8 target = lldb.debugger:CreateTarget("a.out")
9 print("target is valid:", tostring(target:IsValid()))
10 lldb.debugger:SetSelectedTarget(target)
11 quit
12 # CHECK: target is valid: true
13 script -l python --
14 print("selected target: {}".format(lldb.debugger.GetSelectedTarget()))
15 # CHECK: selected target: a.out