[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / lldb / test / Shell / Watchpoint / SetErrorCases.test
blobcc67d0adfc3feb603cb18dc4350a4a9fafafa3e3
1 # RUN: %clangxx_host %p/Inputs/main.cpp -g -o %t.out
2 # RUN: %lldb -b -o 'settings set interpreter.stop-command-source-on-error false' -s %s %t.out 2>&1 | FileCheck %s
4 settings show interpreter.stop-command-source-on-error
5 # CHECK: interpreter.stop-command-source-on-error (boolean) = false
7 b main.cpp:11
8 run
9 # CHECK: stopped
10 # CHECK-NEXT: stop reason = breakpoint
12 watchpoint set
13 # CHECK: Commands for setting a watchpoint.
14 # CHECK: The following subcommands are supported:
15 # CHECK: Set a watchpoint on an address by supplying an expression.
16 # CHECK: Set a watchpoint on a variable.
18 watchpoint set variable -w read_write
19 # CHECK: error: required argument missing
21 watchpoint set expression -w write --
22 # CHECK: error: expression evaluation of address to watch failed
24 watchpoint set expression MyAggregateDataType
25 # CHECK: error: expression did not evaluate to an address
27 watchpoint set variable -s -128
28 # CHECK: error: invalid enumeration value