You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
425 B
18 lines
425 B
# RUN: %clang_host -g %S/Inputs/main.c -o %t
|
|
# RUN: %lldb %t -s %s -o exit | FileCheck %s
|
|
|
|
b main
|
|
# CHECK-LABEL: b main
|
|
# CHECK: Breakpoint 1: where = {{.*}}`main
|
|
|
|
run
|
|
# CHECK-LABEL: run
|
|
# CHECK: Process {{.*}} stopped
|
|
# CHECK: stop reason = breakpoint 1
|
|
# CHECK: frame #0: {{.*}}`main at main.c
|
|
|
|
thread select 1
|
|
# CHECK-LABEL: thread select 1
|
|
# CHECK: stop reason = breakpoint 1
|
|
# CHECK: frame #0: {{.*}}`main at main.c
|