[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / Commands / command-script-import.test
blobab18844eae8cae96e382d25eb3e8bc303e7f3d66
1 # REQUIRES: python
2 # RUN: echo 'b main' > %t.in
3 # RUN: echo 'run' >> %t.in
4 # RUN: echo 'command script import %S/Inputs/frame.py' >> %t.in
6 # RUN: %clang_host -g -O0 %S/Inputs/main.c -o %t.out
7 # RUN: %lldb -b -s %t.in -o 'script print("script: {}".format(lldb.frame))' %t.out | FileCheck %s
9 # Make sure that we don't have access to lldb.frame from the Python script.
10 # CHECK: frame.py: None
12 # Make sure that we do have access to lldb.frame from the script command.
13 # CHECK: script: frame #0