[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / Target / target-label.test
blob5ac430601e29ac538118ce960b935999122dfc8a
1 # REQUIRES: python
2 # UNSUPPORTED: system-windows
3 # RUN: %lldb -b -o 'settings set interpreter.stop-command-source-on-error false' -s %s 2>&1 | FileCheck %s
5 target create -l "ls" /bin/ls
6 target list
7 # CHECK: * target #0 (ls): /bin/ls
9 script lldb.target.SetLabel("")
10 target list
11 # CHECK: * target #0: /bin/ls
13 target create -l "cat" /bin/cat
14 target list
15 # CHECK: target #0: /bin/ls
16 # CHECK-NEXT: * target #1 (cat): /bin/cat
18 target create -l "cat" /bin/cat
19 # CHECK: Cannot use label 'cat' since it's set in target #1.
21 target create -l 42 /bin/cat
22 # CHECK: error: Cannot use integer as target label.
24 target select 0
25 # CHECK: * target #0: /bin/ls
26 # CHECK-NEXT: target #1 (cat): /bin/cat
28 target select cat
29 # CHECK: target #0: /bin/ls
30 # CHECK-NEXT: * target #1 (cat): /bin/cat
32 script lldb.target.GetLabel()
33 # CHECK: 'cat'
35 script lldb.debugger.GetTargetAtIndex(0).SetLabel('Not cat')
36 # CHECK: success
38 target list
39 # CHECK: target #0 (Not cat): /bin/ls
40 # CHECK-NEXT: * target #1 (cat): /bin/cat