|
52 | 52 | // === LLDB TESTS ================================================================================== |
53 | 53 |
|
54 | 54 | // lldb-command:run |
55 | | -// lldb-command:print *bool_ref |
| 55 | +// lldb-command:v *bool_ref |
56 | 56 | // lldbg-check:[...] true |
57 | 57 | // lldbr-check:(bool) *bool_ref = true |
58 | 58 |
|
59 | | -// lldb-command:print *int_ref |
| 59 | +// lldb-command:v *int_ref |
60 | 60 | // lldbg-check:[...] -1 |
61 | 61 | // lldbr-check:(isize) *int_ref = -1 |
62 | 62 |
|
63 | 63 | // NOTE: only rust-enabled lldb supports 32bit chars |
64 | 64 | // lldbr-command:print *char_ref |
65 | 65 | // lldbr-check:(char) *char_ref = 'a' |
66 | 66 |
|
67 | | -// lldb-command:print *i8_ref |
| 67 | +// lldb-command:v *i8_ref |
68 | 68 | // lldbg-check:[...] 'D' |
69 | 69 | // lldbr-check:(i8) *i8_ref = 68 |
70 | 70 |
|
71 | | -// lldb-command:print *i16_ref |
| 71 | +// lldb-command:v *i16_ref |
72 | 72 | // lldbg-check:[...] -16 |
73 | 73 | // lldbr-check:(i16) *i16_ref = -16 |
74 | 74 |
|
75 | | -// lldb-command:print *i32_ref |
| 75 | +// lldb-command:v *i32_ref |
76 | 76 | // lldbg-check:[...] -32 |
77 | 77 | // lldbr-check:(i32) *i32_ref = -32 |
78 | 78 |
|
79 | | -// lldb-command:print *i64_ref |
| 79 | +// lldb-command:v *i64_ref |
80 | 80 | // lldbg-check:[...] -64 |
81 | 81 | // lldbr-check:(i64) *i64_ref = -64 |
82 | 82 |
|
83 | | -// lldb-command:print *uint_ref |
| 83 | +// lldb-command:v *uint_ref |
84 | 84 | // lldbg-check:[...] 1 |
85 | 85 | // lldbr-check:(usize) *uint_ref = 1 |
86 | 86 |
|
87 | | -// lldb-command:print *u8_ref |
| 87 | +// lldb-command:v *u8_ref |
88 | 88 | // lldbg-check:[...] 'd' |
89 | 89 | // lldbr-check:(u8) *u8_ref = 100 |
90 | 90 |
|
91 | | -// lldb-command:print *u16_ref |
| 91 | +// lldb-command:v *u16_ref |
92 | 92 | // lldbg-check:[...] 16 |
93 | 93 | // lldbr-check:(u16) *u16_ref = 16 |
94 | 94 |
|
95 | | -// lldb-command:print *u32_ref |
| 95 | +// lldb-command:v *u32_ref |
96 | 96 | // lldbg-check:[...] 32 |
97 | 97 | // lldbr-check:(u32) *u32_ref = 32 |
98 | 98 |
|
99 | | -// lldb-command:print *u64_ref |
| 99 | +// lldb-command:v *u64_ref |
100 | 100 | // lldbg-check:[...] 64 |
101 | 101 | // lldbr-check:(u64) *u64_ref = 64 |
102 | 102 |
|
103 | | -// lldb-command:print *f32_ref |
| 103 | +// lldb-command:v *f32_ref |
104 | 104 | // lldbg-check:[...] 2.5 |
105 | 105 | // lldbr-check:(f32) *f32_ref = 2.5 |
106 | 106 |
|
107 | | -// lldb-command:print *f64_ref |
| 107 | +// lldb-command:v *f64_ref |
108 | 108 | // lldbg-check:[...] 3.5 |
109 | 109 | // lldbr-check:(f64) *f64_ref = 3.5 |
110 | 110 |
|
|
0 commit comments