[clang] Document the return value of __builtin_COLUMN (#118360)
[llvm-project.git] / lldb / test / Shell / ScriptInterpreter / Lua / breakpoint_oneline_callback.test
blob8424cecf37f725ac1a3b2c91ba7a8c4fb222edc8
1 # RUN: echo "int main() { return 0; }" | %clang_host -x c - -o %t
2 # RUN: %lldb -s %s --script-language lua %t 2>&1 | FileCheck %s
3 b main
4 breakpoint command add -s lua -o 'return false'
5 run
6 # CHECK: Process {{[0-9]+}} exited with status = 0
7 breakpoint command add -s lua -o 'print(bacon)'
8 run
9 # CHECK: bacon
10 # CHECK: Process {{[0-9]+}} exited with status = 0
11 breakpoint command add -s lua -o "return true"
12 run
13 # CHECK: Process {{[0-9]+}} stopped
14 breakpoint command add -s lua -o 'error("my error message")'
15 run
16 # CHECK: my error message
17 # CHECK: Process {{[0-9]+}} stopped