[lldb-dap] Ensure the IO forwarding threads are managed by the DAP object lifecycle...
[llvm-project.git] / lldb / test / Shell / Target / target-label.test
blob7f4f31e09fa16489a7d4c05f9d5acefabcfc36ac
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): [[LS_PATH:.*]]
9 script lldb.target.SetLabel("")
10 target list
11 # CHECK: * target #0: [[LS_PATH]]
13 target create -l "cat" /bin/cat
14 target list
15 # CHECK: target #0: [[LS_PATH]]
16 # CHECK-NEXT: * target #1 (cat): [[CAT_PATH:.*]]
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: [[LS_PATH]]
26 # CHECK-NEXT: target #1 (cat): [[CAT_PATH]]
28 target select cat
29 # CHECK: target #0: [[LS_PATH]]
30 # CHECK-NEXT: * target #1 (cat): [[CAT_PATH]]
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): [[LS_PATH]]
40 # CHECK-NEXT: * target #1 (cat): [[CAT_PATH]]