1# REQUIRES: lua
2# UNSUPPORTED: lldb-repro
3#
4# RUN: cat %s | %lldb --script-language lua 2>&1 | FileCheck %s
5script
6debugger = lldb.SBDebugger.Create()
7print("debugger is valid:", tostring(debugger:IsValid()))
8# CHECK: debugger is valid: true
9