Skip to content

Commit 22ed23d

Browse files
committed
Convert lldbg- to lldb-
1 parent 41d06f4 commit 22ed23d

File tree

77 files changed

+716
-716
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+716
-716
lines changed

tests/debuginfo/associated-types.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -37,33 +37,33 @@
3737
// lldb-command:run
3838

3939
// lldb-command:v arg
40-
// lldbg-check:[...] { b = -1, b1 = 0 }
40+
// lldb-check:[...] { b = -1, b1 = 0 }
4141
// lldb-command:continue
4242

4343
// lldb-command:v inferred
44-
// lldbg-check:[...] 1
44+
// lldb-check:[...] 1
4545
// lldb-command:v explicitly
46-
// lldbg-check:[...] 1
46+
// lldb-check:[...] 1
4747
// lldb-command:continue
4848

4949
// lldb-command:v arg
50-
// lldbg-check:[...] 2
50+
// lldb-check:[...] 2
5151
// lldb-command:continue
5252

5353
// lldb-command:v arg
54-
// lldbg-check:[...] (4, 5)
54+
// lldb-check:[...] (4, 5)
5555
// lldb-command:continue
5656

5757
// lldb-command:v a
58-
// lldbg-check:[...] 6
58+
// lldb-check:[...] 6
5959
// lldb-command:v b
60-
// lldbg-check:[...] 7
60+
// lldb-check:[...] 7
6161
// lldb-command:continue
6262

6363
// lldb-command:v a
64-
// lldbg-check:[...] 8
64+
// lldb-check:[...] 8
6565
// lldb-command:v b
66-
// lldbg-check:[...] 9
66+
// lldb-check:[...] 9
6767
// lldb-command:continue
6868

6969
#![allow(unused_variables)]

tests/debuginfo/basic-types.rs

+13-13
Original file line numberDiff line numberDiff line change
@@ -46,32 +46,32 @@
4646

4747
// lldb-command:run
4848
// lldb-command:v b
49-
// lldbg-check:[...] false
49+
// lldb-check:[...] false
5050
// lldb-command:v i
51-
// lldbg-check:[...] -1
51+
// lldb-check:[...] -1
5252

5353
// lldb-command:v i8
54-
// lldbg-check:[...] 'D'
54+
// lldb-check:[...] 'D'
5555
// lldb-command:v i16
56-
// lldbg-check:[...] -16
56+
// lldb-check:[...] -16
5757
// lldb-command:v i32
58-
// lldbg-check:[...] -32
58+
// lldb-check:[...] -32
5959
// lldb-command:v i64
60-
// lldbg-check:[...] -64
60+
// lldb-check:[...] -64
6161
// lldb-command:v u
62-
// lldbg-check:[...] 1
62+
// lldb-check:[...] 1
6363
// lldb-command:v u8
64-
// lldbg-check:[...] 'd'
64+
// lldb-check:[...] 'd'
6565
// lldb-command:v u16
66-
// lldbg-check:[...] 16
66+
// lldb-check:[...] 16
6767
// lldb-command:v u32
68-
// lldbg-check:[...] 32
68+
// lldb-check:[...] 32
6969
// lldb-command:v u64
70-
// lldbg-check:[...] 64
70+
// lldb-check:[...] 64
7171
// lldb-command:v f32
72-
// lldbg-check:[...] 2.5
72+
// lldb-check:[...] 2.5
7373
// lldb-command:v f64
74-
// lldbg-check:[...] 3.5
74+
// lldb-check:[...] 3.5
7575

7676
// === CDB TESTS ===================================================================================
7777

tests/debuginfo/borrowed-basic.rs

+14-14
Original file line numberDiff line numberDiff line change
@@ -53,47 +53,47 @@
5353

5454
// lldb-command:run
5555
// lldb-command:v *bool_ref
56-
// lldbg-check:[...] true
56+
// lldb-check:[...] true
5757

5858
// lldb-command:v *int_ref
59-
// lldbg-check:[...] -1
59+
// lldb-check:[...] -1
6060

6161

6262
// lldb-command:v *i8_ref
63-
// lldbg-check:[...] 'D'
63+
// lldb-check:[...] 'D'
6464

6565
// lldb-command:v *i16_ref
66-
// lldbg-check:[...] -16
66+
// lldb-check:[...] -16
6767

6868
// lldb-command:v *i32_ref
69-
// lldbg-check:[...] -32
69+
// lldb-check:[...] -32
7070

7171
// lldb-command:v *i64_ref
72-
// lldbg-check:[...] -64
72+
// lldb-check:[...] -64
7373

7474
// lldb-command:v *uint_ref
75-
// lldbg-check:[...] 1
75+
// lldb-check:[...] 1
7676

7777
// lldb-command:v *u8_ref
78-
// lldbg-check:[...] 'd'
78+
// lldb-check:[...] 'd'
7979

8080
// lldb-command:v *u16_ref
81-
// lldbg-check:[...] 16
81+
// lldb-check:[...] 16
8282

8383
// lldb-command:v *u32_ref
84-
// lldbg-check:[...] 32
84+
// lldb-check:[...] 32
8585

8686
// lldb-command:v *u64_ref
87-
// lldbg-check:[...] 64
87+
// lldb-check:[...] 64
8888

8989
// lldb-command:v *f16_ref
90-
// lldbg-check:[...] 1.5
90+
// lldb-check:[...] 1.5
9191

9292
// lldb-command:v *f32_ref
93-
// lldbg-check:[...] 2.5
93+
// lldb-check:[...] 2.5
9494

9595
// lldb-command:v *f64_ref
96-
// lldbg-check:[...] 3.5
96+
// lldb-check:[...] 3.5
9797

9898
#![allow(unused_variables)]
9999
#![feature(omit_gdb_pretty_printer_section)]

tests/debuginfo/borrowed-c-style-enum.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
// lldb-command:run
2020

2121
// lldb-command:v *the_a_ref
22-
// lldbg-check:[...] TheA
22+
// lldb-check:[...] TheA
2323

2424
// lldb-command:v *the_b_ref
25-
// lldbg-check:[...] TheB
25+
// lldb-check:[...] TheB
2626

2727
// lldb-command:v *the_c_ref
28-
// lldbg-check:[...] TheC
28+
// lldb-check:[...] TheC
2929

3030
#![allow(unused_variables)]
3131
#![feature(omit_gdb_pretty_printer_section)]

tests/debuginfo/borrowed-enum.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
// lldb-command:run
2222

2323
// lldb-command:v *the_a_ref
24-
// lldbg-check:(borrowed_enum::ABC) *the_a_ref = { value = { x = 0 y = 8970181431921507452 } $discr$ = 0 }
24+
// lldb-check:(borrowed_enum::ABC) *the_a_ref = { value = { x = 0 y = 8970181431921507452 } $discr$ = 0 }
2525
// lldb-command:v *the_b_ref
26-
// lldbg-check:(borrowed_enum::ABC) *the_b_ref = { value = { 0 = 0 1 = 286331153 2 = 286331153 } $discr$ = 1 }
26+
// lldb-check:(borrowed_enum::ABC) *the_b_ref = { value = { 0 = 0 1 = 286331153 2 = 286331153 } $discr$ = 1 }
2727
// lldb-command:v *univariant_ref
28-
// lldbg-check:(borrowed_enum::Univariant) *univariant_ref = { value = { 0 = 4820353753753434 } }
28+
// lldb-check:(borrowed_enum::Univariant) *univariant_ref = { value = { 0 = 4820353753753434 } }
2929

3030
#![allow(unused_variables)]
3131
#![feature(omit_gdb_pretty_printer_section)]

tests/debuginfo/borrowed-struct.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@
3131
// lldb-command:run
3232

3333
// lldb-command:v *stack_val_ref
34-
// lldbg-check:[...] { x = 10 y = 23.5 }
34+
// lldb-check:[...] { x = 10 y = 23.5 }
3535

3636
// lldb-command:v *stack_val_interior_ref_1
37-
// lldbg-check:[...] 10
37+
// lldb-check:[...] 10
3838

3939
// lldb-command:v *stack_val_interior_ref_2
40-
// lldbg-check:[...] 23.5
40+
// lldb-check:[...] 23.5
4141

4242
// lldb-command:v *ref_to_unnamed
43-
// lldbg-check:[...] { x = 11 y = 24.5 }
43+
// lldb-check:[...] { x = 11 y = 24.5 }
4444

4545
// lldb-command:v *unique_val_ref
46-
// lldbg-check:[...] { x = 13 y = 26.5 }
46+
// lldb-check:[...] { x = 13 y = 26.5 }
4747

4848
// lldb-command:v *unique_val_interior_ref_1
49-
// lldbg-check:[...] 13
49+
// lldb-check:[...] 13
5050

5151
// lldb-command:v *unique_val_interior_ref_2
52-
// lldbg-check:[...] 26.5
52+
// lldb-check:[...] 26.5
5353

5454
#![allow(unused_variables)]
5555
#![feature(omit_gdb_pretty_printer_section)]

tests/debuginfo/borrowed-tuple.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
// lldb-command:run
2020

2121
// lldb-command:v *stack_val_ref
22-
// lldbg-check:[...] { 0 = -14 1 = -19 }
22+
// lldb-check:[...] { 0 = -14 1 = -19 }
2323

2424
// lldb-command:v *ref_to_unnamed
25-
// lldbg-check:[...] { 0 = -15 1 = -20 }
25+
// lldb-check:[...] { 0 = -15 1 = -20 }
2626

2727
// lldb-command:v *unique_val_ref
28-
// lldbg-check:[...] { 0 = -17 1 = -22 }
28+
// lldb-check:[...] { 0 = -17 1 = -22 }
2929

3030

3131
#![allow(unused_variables)]

tests/debuginfo/borrowed-unique-basic.rs

+14-14
Original file line numberDiff line numberDiff line change
@@ -57,47 +57,47 @@
5757
// lldb-command:run
5858

5959
// lldb-command:v *bool_ref
60-
// lldbg-check:[...] true
60+
// lldb-check:[...] true
6161

6262
// lldb-command:v *int_ref
63-
// lldbg-check:[...] -1
63+
// lldb-check:[...] -1
6464

6565

6666
// lldb-command:v *i8_ref
67-
// lldbg-check:[...] 68
67+
// lldb-check:[...] 68
6868

6969
// lldb-command:v *i16_ref
70-
// lldbg-check:[...] -16
70+
// lldb-check:[...] -16
7171

7272
// lldb-command:v *i32_ref
73-
// lldbg-check:[...] -32
73+
// lldb-check:[...] -32
7474

7575
// lldb-command:v *i64_ref
76-
// lldbg-check:[...] -64
76+
// lldb-check:[...] -64
7777

7878
// lldb-command:v *uint_ref
79-
// lldbg-check:[...] 1
79+
// lldb-check:[...] 1
8080

8181
// lldb-command:v *u8_ref
82-
// lldbg-check:[...] 100
82+
// lldb-check:[...] 100
8383

8484
// lldb-command:v *u16_ref
85-
// lldbg-check:[...] 16
85+
// lldb-check:[...] 16
8686

8787
// lldb-command:v *u32_ref
88-
// lldbg-check:[...] 32
88+
// lldb-check:[...] 32
8989

9090
// lldb-command:v *u64_ref
91-
// lldbg-check:[...] 64
91+
// lldb-check:[...] 64
9292

9393
// lldb-command:v *f16_ref
94-
// lldbg-check:[...] 1.5
94+
// lldb-check:[...] 1.5
9595

9696
// lldb-command:v *f32_ref
97-
// lldbg-check:[...] 2.5
97+
// lldb-check:[...] 2.5
9898

9999
// lldb-command:v *f64_ref
100-
// lldbg-check:[...] 3.5
100+
// lldb-check:[...] 3.5
101101

102102
#![allow(unused_variables)]
103103
#![feature(omit_gdb_pretty_printer_section)]

tests/debuginfo/box.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
// lldb-command:run
1616
// lldb-command:v *a
17-
// lldbg-check:[...] 1
17+
// lldb-check:[...] 1
1818
// lldb-command:v *b
19-
// lldbg-check:[...] { 0 = 2 1 = 3.5 }
19+
// lldb-check:[...] { 0 = 2 1 = 3.5 }
2020

2121
#![allow(unused_variables)]
2222
#![feature(omit_gdb_pretty_printer_section)]

tests/debuginfo/boxed-struct.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
// lldb-command:run
1717

1818
// lldb-command:v *boxed_with_padding
19-
// lldbg-check:[...] { x = 99 y = 999 z = 9999 w = 99999 }
19+
// lldb-check:[...] { x = 99 y = 999 z = 9999 w = 99999 }
2020

2121
// lldb-command:v *boxed_with_dtor
22-
// lldbg-check:[...] { x = 77 y = 777 z = 7777 w = 77777 }
22+
// lldb-check:[...] { x = 77 y = 777 z = 7777 w = 77777 }
2323

2424
#![allow(unused_variables)]
2525
#![feature(omit_gdb_pretty_printer_section)]

tests/debuginfo/by-value-self-argument-in-trait-impl.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
// lldb-command:run
2323

2424
// lldb-command:v self
25-
// lldbg-check:[...] 1111
25+
// lldb-check:[...] 1111
2626
// lldb-command:continue
2727

2828
// lldb-command:v self
29-
// lldbg-check:[...] { x = 2222 y = 3333 }
29+
// lldb-check:[...] { x = 2222 y = 3333 }
3030
// lldb-command:continue
3131

3232
// lldb-command:v self
33-
// lldbg-check:[...] { 0 = 4444.5 1 = 5555 2 = 6666 3 = 7777.5 }
33+
// lldb-check:[...] { 0 = 4444.5 1 = 5555 2 = 6666 3 = 7777.5 }
3434
// lldb-command:continue
3535

3636
#![feature(omit_gdb_pretty_printer_section)]

tests/debuginfo/c-style-enum-in-composite.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,25 @@
3030
// lldb-command:run
3131

3232
// lldb-command:v tuple_interior_padding
33-
// lldbg-check:[...] { 0 = 0 1 = OneHundred }
33+
// lldb-check:[...] { 0 = 0 1 = OneHundred }
3434

3535
// lldb-command:v tuple_padding_at_end
36-
// lldbg-check:[...] { 0 = { 0 = 1 1 = OneThousand } 1 = 2 }
36+
// lldb-check:[...] { 0 = { 0 = 1 1 = OneThousand } 1 = 2 }
3737

3838
// lldb-command:v tuple_different_enums
39-
// lldbg-check:[...] { 0 = OneThousand 1 = MountainView 2 = OneMillion 3 = Vienna }
39+
// lldb-check:[...] { 0 = OneThousand 1 = MountainView 2 = OneMillion 3 = Vienna }
4040

4141
// lldb-command:v padded_struct
42-
// lldbg-check:[...] { a = 3 b = OneMillion c = 4 d = Toronto e = 5 }
42+
// lldb-check:[...] { a = 3 b = OneMillion c = 4 d = Toronto e = 5 }
4343

4444
// lldb-command:v packed_struct
45-
// lldbg-check:[...] { a = 6 b = OneHundred c = 7 d = Vienna e = 8 }
45+
// lldb-check:[...] { a = 6 b = OneHundred c = 7 d = Vienna e = 8 }
4646

4747
// lldb-command:v non_padded_struct
48-
// lldbg-check:[...] { a = OneMillion b = MountainView c = OneThousand d = Toronto }
48+
// lldb-check:[...] { a = OneMillion b = MountainView c = OneThousand d = Toronto }
4949

5050
// lldb-command:v struct_with_drop
51-
// lldbg-check:[...] { 0 = { a = OneHundred b = Vienna } 1 = 9 }
51+
// lldb-check:[...] { 0 = { a = OneHundred b = Vienna } 1 = 9 }
5252

5353
#![allow(unused_variables)]
5454
#![feature(omit_gdb_pretty_printer_section)]

0 commit comments

Comments
 (0)