|
1 | 1 | // ignore-tidy-linelength
|
2 | 2 | //@ ignore-freebsd: gdb package too new
|
3 |
| -//@ only-cdb // "Temporarily" ignored on GDB/LLDB due to debuginfo tests being disabled, see PR 47155 |
4 | 3 | //@ ignore-android: FIXME(#10381)
|
5 | 4 | //@ compile-flags:-g
|
6 | 5 | //@ min-gdb-version: 7.7
|
|
12 | 11 | // gdb-command: run
|
13 | 12 |
|
14 | 13 | // gdb-command: print slice
|
15 |
| -// gdb-check:$1 = &[i32](len: 4) = {0, 1, 2, 3} |
| 14 | +// gdb-check:$1 = &[i32](size=4) = {0, 1, 2, 3} |
16 | 15 |
|
17 | 16 | // gdb-command: print vec
|
18 |
| -// gdb-check:$2 = Vec<u64, alloc::alloc::Global>(len: 4, cap: [...]) = {4, 5, 6, 7} |
| 17 | +// gdb-check:$2 = Vec(size=4) = {4, 5, 6, 7} |
19 | 18 |
|
20 | 19 | // gdb-command: print str_slice
|
21 | 20 | // gdb-check:$3 = "IAMA string slice!"
|
|
24 | 23 | // gdb-check:$4 = "IAMA string!"
|
25 | 24 |
|
26 | 25 | // gdb-command: print some
|
27 |
| -// gdb-check:$5 = Some = {8} |
| 26 | +// gdb-check:$5 = core::option::Option<i16>::Some(8) |
28 | 27 |
|
29 | 28 | // gdb-command: print none
|
30 | 29 | // gdbg-check:$6 = None
|
31 |
| -// gdbr-check:$6 = core::option::Option::None |
| 30 | +// gdbr-check:$6 = core::option::Option<i64>::None |
32 | 31 |
|
33 | 32 | // gdb-command: print os_string
|
34 | 33 | // gdb-check:$7 = "IAMA OS string 😃"
|
35 | 34 |
|
36 | 35 | // gdb-command: print some_string
|
37 |
| -// gdb-check:$8 = Some = {"IAMA optional string!"} |
| 36 | +// gdb-check:$8 = core::option::Option<alloc::string::String>::Some("IAMA optional string!") |
38 | 37 |
|
39 |
| -// gdb-command: set print length 5 |
| 38 | +// gdb-command: set print elements 5 |
40 | 39 | // gdb-command: print some_string
|
41 |
| -// gdb-check:$8 = Some = {"IAMA "...} |
| 40 | +// gdb-check:$9 = core::option::Option<alloc::string::String>::Some("IAMA "...) |
42 | 41 |
|
43 | 42 | // === LLDB TESTS ==================================================================================
|
44 | 43 |
|
|
0 commit comments