xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Python/silent_command_script_import.test (revision f9517353959b4ef5c706e4356b56aeb9e0087584)
1# REQUIRES: python
2
3# RUN: %lldb --script-language python -o 'command script import lldb.macosx.crashlog' 2>&1 | FileCheck %s
4# RUN: %lldb --script-language python -o 'command script import -s lldb.macosx.crashlog' 2>&1 | FileCheck %s --check-prefix SILENT
5# RUN: %lldb --script-language python -o 'command script import --silent lldb.macosx.crashlog' 2>&1 | FileCheck %s --check-prefix SILENT
6
7CHECK: commands have been installed
8SILENT-NOT: commands have been installed
9