[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / Commands / command-thread-select.test
blob3b48452eea826493bc2a9e1ed8b27121686ce600
1 # RUN: %clang_host -g %S/Inputs/main.c -o %t
2 # RUN: %lldb %t -s %s -o exit | FileCheck %s
4 b main
5 # CHECK-LABEL: b main
6 # CHECK: Breakpoint 1: where = {{.*}}`main
8 run
9 # CHECK-LABEL: run
10 # CHECK: Process {{.*}} stopped
11 # CHECK: stop reason = breakpoint 1
12 # CHECK:   frame #0: {{.*}}`main at main.c
14 thread select 1
15 # CHECK-LABEL: thread select 1
16 # CHECK: stop reason = breakpoint 1
17 # CHECK:   frame #0: {{.*}}`main at main.c