10 lines · plain
1# RUN: rm -rf %t && mkdir -p %t2# RUN: echo "print('Rene Magritte')" >> %t/foo.py3 4# RUN: %lldb --script-language python -o 'command script import %t/foo.py' 2>&1 | FileCheck %s5# RUN: %lldb --script-language python -o 'command script import -s %t/foo.py' 2>&1 | FileCheck %s --check-prefix SILENT6# RUN: %lldb --script-language python -o 'command script import --silent %t/foo.py' 2>&1 | FileCheck %s --check-prefix SILENT7 8CHECK: Rene Magritte9SILENT-NOT: Rene Magritte10