Skip to content

Commit e4b27a2

Browse files
committed
Fix unknown dwim-print command.
1 parent 3ee1219 commit e4b27a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/debuginfo/packed-struct.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@
5050
// lldbg-check:[...] { a = 987 b = { x = 876 y = 765 z = 654 w = 543 } c = { x = 432 y = 321 z = 210 w = 109 } d = -98 }
5151
// lldbr-check:(packed_struct::UnpackedInPacked) unpackedInPacked = { a = 987 b = { x = 876 y = 765 z = 654 w = 543 } c = { x = 432 y = 321 z = 210 w = 109 } d = -98 }
5252

53-
// lldb-command:dwim-print sizeof(packed)
53+
// lldb-command:expr sizeof(packed)
5454
// lldbg-check:[...] 14
55-
// lldbr-check:(usize) = 14
55+
// lldbr-check:(usize) [...] 14
5656

57-
// lldb-command:dwim-print sizeof(packedInPacked)
57+
// lldb-command:expr sizeof(packedInPacked)
5858
// lldbg-check:[...] 40
59-
// lldbr-check:(usize) = 40
59+
// lldbr-check:(usize) [...] 40
6060

6161
#![allow(unused_variables)]
6262
#![feature(omit_gdb_pretty_printer_section)]

0 commit comments

Comments
 (0)