Files
llvm/lldb/test/Shell/Watchpoint/SetErrorCases.test
David Spickett b0af8a1ede Revert "[lldb] [mostly NFC] Large WP foundation: WatchpointResources (#68845)"
...and follow ups.

As it has caused test failures on Linux Arm and AArch64:
https://lab.llvm.org/buildbot/#/builders/96/builds/49126
https://lab.llvm.org/buildbot/#/builders/17/builds/45824

```
  lldb-shell :: Subprocess/clone-follow-child-wp.test
  lldb-shell :: Subprocess/fork-follow-child-wp.test
  lldb-shell :: Subprocess/vfork-follow-child-wp.test
```

This reverts commit a6c62bf1a4,
commit a0a1ff3ab4 and commit
fc6b72523f.
2023-11-28 09:39:37 +00:00

29 lines
950 B
Plaintext

# RUN: %clangxx_host %p/Inputs/main.cpp -g -o %t.out
# RUN: %lldb -b -o 'settings set interpreter.stop-command-source-on-error false' -s %s %t.out 2>&1 | FileCheck %s
settings show interpreter.stop-command-source-on-error
# CHECK: interpreter.stop-command-source-on-error (boolean) = false
b main.cpp:11
run
# CHECK: stopped
# CHECK-NEXT: stop reason = breakpoint
watchpoint set
# CHECK: Commands for setting a watchpoint.
# CHECK: The following subcommands are supported:
# CHECK: Set a watchpoint on an address by supplying an expression.
# CHECK: Set a watchpoint on a variable.
watchpoint set variable -w read_write
# CHECK: error: required argument missing
watchpoint set expression -w write --
# CHECK: error: expression evaluation of address to watch failed
watchpoint set expression MyAggregateDataType
# CHECK: error: expression did not evaluate to an address
watchpoint set variable -s -128
# CHECK: error: invalid enumeration value