diff options
| author | Wesley Wiser <wesleywiser@microsoft.com> | 2021-07-09 12:52:28 -0400 |
|---|---|---|
| committer | Wesley Wiser <wesleywiser@microsoft.com> | 2021-07-09 18:29:08 -0400 |
| commit | d1852e10545c65cec73ea296436840e67309d82c (patch) | |
| tree | 1120d16257bd483b14a4cbce8b91fdac0e9c14c8 /src/test/debuginfo | |
| parent | 85002741a26d6fdf6578e33aaaeace7c04c6254a (diff) | |
| download | rust-d1852e10545c65cec73ea296436840e67309d82c.tar.gz rust-d1852e10545c65cec73ea296436840e67309d82c.zip | |
Respond to review feedback
Diffstat (limited to 'src/test/debuginfo')
| -rw-r--r-- | src/test/debuginfo/duration-type.rs | 4 | ||||
| -rw-r--r-- | src/test/debuginfo/marker-types.rs | 4 | ||||
| -rw-r--r-- | src/test/debuginfo/pretty-std.rs | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/test/debuginfo/duration-type.rs b/src/test/debuginfo/duration-type.rs index 3a7f9f78b5f..bc0266d644e 100644 --- a/src/test/debuginfo/duration-type.rs +++ b/src/test/debuginfo/duration-type.rs @@ -8,8 +8,8 @@ // cdb-command: dx duration // cdb-check:duration : 5s 12ns [Type: core::time::Duration] // cdb-check: [<Raw View>] [Type: core::time::Duration] -// cdb-check: seconds : 0x5 [Type: unsigned __int64] -// cdb-check: nanoseconds : 0xc [Type: unsigned int] +// cdb-check: seconds : 5 [Type: unsigned __int64] +// cdb-check: nanoseconds : 12 [Type: unsigned int] use std::time::Duration; diff --git a/src/test/debuginfo/marker-types.rs b/src/test/debuginfo/marker-types.rs index de4e8311a4f..52d70bda908 100644 --- a/src/test/debuginfo/marker-types.rs +++ b/src/test/debuginfo/marker-types.rs @@ -8,7 +8,7 @@ // cdb-command: dx nonnull // cdb-check:nonnull : NonNull(0x[...]: 0xc) [Type: core::ptr::non_null::NonNull<u32>] // cdb-check: [<Raw View>] [Type: core::ptr::non_null::NonNull<u32>] -// cdb-checK: 0xc [Type: unsigned int] +// cdb-check: 0xc [Type: unsigned int] // cdb-command: dx manuallydrop // cdb-check:manuallydrop : 12345 [Type: core::mem::manually_drop::ManuallyDrop<i32>] @@ -19,7 +19,7 @@ // cdb-check: [<Raw View>] [Type: core::pin::Pin<ref_mut$<alloc::string::String> >] // cdb-check: [len] : 0x4 [Type: unsigned __int64] // cdb-check: [capacity] : 0x4 [Type: unsigned __int64] -// cdb-check: [chars] +// cdb-check: [chars] : "this" use std::mem::ManuallyDrop; use std::pin::Pin; diff --git a/src/test/debuginfo/pretty-std.rs b/src/test/debuginfo/pretty-std.rs index 51325cd4249..303f0114b17 100644 --- a/src/test/debuginfo/pretty-std.rs +++ b/src/test/debuginfo/pretty-std.rs @@ -113,7 +113,7 @@ // cdb-command: dx os_string // cdb-check:os_string : "IAMA OS string 😃" [Type: std::ffi::os_str::OsString] // cdb-check: [<Raw View>] [Type: std::ffi::os_str::OsString] -// cdb-check: [chars] +// cdb-check: [chars] : "IAMA OS string 😃" // cdb-command: dx some // cdb-check:some : Some [Type: enum$<core::option::Option<i16> >] |
