1# RUN: rm -rf %t && mkdir -p %t
2# RUN: echo "print('Rene Magritte')" >> %t/foo.py
3
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
7
8CHECK: Rene Magritte
9SILENT-NOT: Rene Magritte
10