Lines Matching full:script
3 # RUN: %lldb -o 'script quit' | FileCheck %s --check-prefix SILENT
4 # RUN: %lldb -o 'script quit()' | FileCheck %s --check-prefix SILENT
6 # RUN: %lldb -o 'script exit' | FileCheck %s --check-prefix SILENT
7 # RUN: %lldb -o 'script exit()' | FileCheck %s --check-prefix SILENT
9 # RUN: echo -e 'script\nquit' > %t
12 # RUN: echo -e 'script\nexit' > %t
15 # SILENT-NOT: Script exited with code
17 # RUN: %lldb -o 'script quit(100+23)' | FileCheck %s --check-prefix VERBOSE
18 # RUN: %lldb -o 'script exit(100+23)' | FileCheck %s --check-prefix VERBOSE
20 # RUN: echo -e 'script\nexit(100+23)' > %t
23 # RUN: echo -e 'script\nquit(100+23)' > %t
26 # VERBOSE: Script exited with code 123
28 # RUN: %lldb -o 'script print(locals())' | FileCheck %s --check-prefix LOCALS