24 lines · plain
1# RUN: mkdir -p %t2# RUN: cd %t3# RUN: %build %p/Inputs/dummy-target.c -o dummy.out4# RUN: %lldb -b -s %s dummy.out | FileCheck %s5 6breakpoint set -D -n main7# CHECK: Breakpoint {{[0-9]}}: no locations (pending).8# CHECK: Breakpoint set in dummy target9 10breakpoint list11# CHECK: No breakpoints currently set12 13breakpoint list -D14# CHECK: name = 'main', locations = 0 (pending)15 16target delete17# CHECK: 1 targets deleted18 19target create dummy.out20# CHECK: Current executable set to {{.*}}dummy.out21 22breakpoint list23# CHECK: name = 'main', locations = {{[1-9]}}24