Files
clang-p2996/lldb/lit/Watchpoint/SetErrorCases.test
Jonas Devlieghere 84bed67a5c [test] Convert TestWatchpointSetErrorCases.py to lit
This test is flaky on GreenDragon. Since it was a pexpect test and
straightforward enough to convert, I went ahead and converted it to a
lit test.

Differential revision: https://reviews.llvm.org/D61414

llvm-svn: 359751
2019-05-02 01:54:05 +00:00

29 lines
945 B
Plaintext

# RUN: %clangxx %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