We were incorrectly parsing the -C argument to breakpoint set as the column breakpoint, even though according to the help this should be the breakpoint command. This fixes that by renaming the option to -u, adding it to help, and adding a test case. Differential revision: https://reviews.llvm.org/D73284
6 lines
294 B
Plaintext
6 lines
294 B
Plaintext
# RUN: %clang_host -g -O0 %S/Inputs/main.c -o %t.out
|
|
# RUN: %lldb -b -o 'help breakpoint set' -o 'breakpoint set -f main.c -l 2 -u 21' %t.out | FileCheck %s
|
|
# CHECK: -u <column> ( --column <column> )
|
|
# CHECK: Specifies the column number on which to set this breakpoint.
|
|
# CHECK: at main.c:2:21
|