blob: da6436cb5ca20eb2e460bf8d6f97d311d51cc47e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Test that we warn the user about truncated output
# when target.max-children-count wasn't explicitly set.
# RUN: split-file %s %t
# RUN: %clang_host -g %t/main.cpp -o %t.out
# RUN: %lldb -x -b -s %t/dwim-commands.input %t.out -o exit 2>&1 \
# RUN: | FileCheck %s --check-prefix=DWIM
#
# RUN: %lldb -x -b -s %t/expr-commands.input %t.out -o exit 2>&1 \
# RUN: | FileCheck %s --check-prefix=EXPR
#
# RUN: %lldb -x -b -s %t/frame-var-commands.input %t.out -o exit 2>&1 \
# RUN: | FileCheck %s --check-prefix=VAR
#
# RUN: %lldb -x -b -s %t/with-setting-commands.input %t.out -o exit 2>&1 \
# RUN: | FileCheck %s --check-prefix=SETTING
#--- main.cpp
int main() {
int arr[512] = { 3 };
__builtin_debugtrap();
}
#--- dwim-commands.input
run
dwim-print arr
frame variable arr
DWIM: (lldb) dwim-print arr
DWIM: *** Some of the displayed variables have more members
DWIM-SAME: use the --show-all-children option to dwim-print
DWIM: (lldb) frame variable arr
DWIM-NOT: *** Some of the displayed variables have more members
#--- expr-commands.input
run
expression arr
frame variable arr
EXPR: (lldb) expression arr
EXPR: *** Some of the displayed variables have more members
EXPR-SAME: use the --show-all-children option to expression
EXPR: (lldb) frame variable arr
EXPR-NOT: *** Some of the displayed variables have more members
#--- frame-var-commands.input
run
frame variable arr
dwim-print arr
VAR: (lldb) frame variable arr
VAR: *** Some of the displayed variables have more members
VAR-SAME: use the --show-all-children option to frame variable
VAR: (lldb) dwim-print arr
VAR-NOT: *** Some of the displayed variables have more members
#--- with-setting-commands.input
run
settings set target.max-children-count 1
frame variable arr
SETTING: (lldb) frame variable arr
SETTING-NOT: *** Some of the displayed variables have more members
|