Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / Shell / SymbolFile / OnDemand / symbolic-breakpoint.test
blob69513aab0e239a558206fab4ad6343b906bf3d02
1 # Test shows that symbolic function breakpoint works with LLDB on demand symbol loading.
3 # UNSUPPORTED: system-windows
4 # RUN: mkdir -p %t
5 # RUN: cd %t
6 # RUN: %build %p/Inputs/basic.cpp -o basic.out
7 # RUN: %lldb -b -O "settings set symbols.load-on-demand true" -s %s basic.out | FileCheck %s
9 breakpoint list
10 # CHECK: No breakpoints currently set
12 b bar
13 # CHECK: where = {{.*}}`bar(int, int) + {{.*}} at basic.cpp:1
15 breakpoint list
16 # CHECK: where = {{.*}}`bar(int, int) + {{.*}} at basic.cpp:1
18 run
19 # CHECK: stop reason = breakpoint
22 # CHECK: {{.*}}`bar(x=33, y=78) at basic.cpp:1
23 # CHECK: {{.*}}`foo(x=33, y=78) at basic.cpp:3
24 # CHECK: {{.*}}`main(argc=1, argv={{.*}}) at basic.cpp:5