[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / ScriptInterpreter / Python / silent_command_script_import.test
blobf7e6330004b76b55f0b510151d32c583dd3067b9
1 # RUN: rm -rf %t && mkdir -p %t
2 # RUN: echo "print('Rene Magritte')" >> %t/foo.py
4 # RUN: %lldb --script-language python -o 'command script import %t/foo.py' 2>&1 | FileCheck %s
5 # RUN: %lldb --script-language python -o 'command script import -s %t/foo.py' 2>&1 | FileCheck %s --check-prefix SILENT
6 # RUN: %lldb --script-language python -o 'command script import --silent %t/foo.py' 2>&1 | FileCheck %s --check-prefix SILENT
8 CHECK: Rene Magritte
9 SILENT-NOT: Rene Magritte