brintos

brintos / llvm-project-archived public Read only

0
0
Text · 624 B · 65c1e22 Raw
11 lines · plain
1# UNSUPPORTED: system-windows2#3# RUN: %clang_host -g -O0 %S/Inputs/main.c -o %t.out4# RUN: %lldb -b -o 'help breakpoint set' -o 'breakpoint set -f main.c -l 2 -u 21' %t.out | FileCheck %s --check-prefix HELP --check-prefix CHECK5# RUN: %lldb -b -o 'help _regexp-break' -o 'b main.c:2:21' %t.out | FileCheck %s --check-prefix HELP-REGEX --check-prefix CHECK6# HELP: -u <column> ( --column <column> )7# HELP: Specifies the column number on which to set this breakpoint.8# HELP-REGEX: _regexp-break <filename>:<linenum>:<colnum>9# HELP-REGEX: main.c:12:21{{.*}}Break at line 12 and column 21 of main.c10# CHECK: at main.c:2:2111