[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / ScriptInterpreter / Lua / breakpoint_function_callback.test
blob4527b68ef41c09f2f41c0350a8495f55c1629957
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 script
5 function abc(a, b, c, ...)
6 print(c)
7 if c then print(c:GetValueForKey("foo"):GetStringValue(32)) end
8 end
9 quit
10 breakpoint command add -s lua -F abc
12 # CHECK: nil
13 breakpoint command add -s lua -F abc -k foo -v 123pizza!
15 # CHECK: foo: 123pizza!
16 # CHECK: 123pizza!
17 breakpoint command add -s lua -o "abc(frame, bp_loc, ...)"
19 # CHECK: nil
20 breakpoint command add -s lua -F typo
22 # CHECK: a nil value