Skip to content

Commit 730355a

Browse files
committed
Fix the rest of the MSVC tests?
1 parent c68ffad commit 730355a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

‎src/etc/natvis/libstd.natvis‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@
104104
</Type>
105105

106106
<Type Name="std::ffi::os_str::OsString">
107-
<DisplayString>{(char*)inner.inner.bytes.buf.ptr.pointer.pointer,[inner.inner.bytes.len]}</DisplayString>
107+
<DisplayString>{(char*)inner.inner.bytes.buf.inner.ptr.pointer.pointer,[inner.inner.bytes.len]}</DisplayString>
108108
<Expand>
109109
<Synthetic Name="[chars]">
110-
<DisplayString>{(char*)inner.inner.bytes.buf.ptr.pointer.pointer,[inner.inner.bytes.len]}</DisplayString>
110+
<DisplayString>{(char*)inner.inner.bytes.buf.inner.ptr.pointer.pointer,[inner.inner.bytes.len]}</DisplayString>
111111
<Expand>
112112
<ArrayItems>
113113
<Size>inner.inner.bytes.len</Size>
114-
<ValuePointer>(char*)inner.inner.bytes.buf.ptr.pointer.pointer</ValuePointer>
114+
<ValuePointer>(char*)inner.inner.bytes.buf.inner.ptr.pointer.pointer</ValuePointer>
115115
</ArrayItems>
116116
</Expand>
117117
</Synthetic>

‎tests/debuginfo/pretty-std.rs‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@
8181
// cdb-check:vec,d [...] : { len=4 } [Type: [...]::Vec<u64,alloc::alloc::Global>]
8282
// cdb-check: [len] : 4 [Type: [...]]
8383
// cdb-check: [capacity] : [...] [Type: [...]]
84-
// cdb-check: [0] : 4 [Type: unsigned __int64]
85-
// cdb-check: [1] : 5 [Type: unsigned __int64]
86-
// cdb-check: [2] : 6 [Type: unsigned __int64]
87-
// cdb-check: [3] : 7 [Type: unsigned __int64]
84+
// cdb-check: [0] : 4 [Type: u64]
85+
// cdb-check: [1] : 5 [Type: u64]
86+
// cdb-check: [2] : 6 [Type: u64]
87+
// cdb-check: [3] : 7 [Type: u64]
8888

8989
// cdb-command: dx str_slice
9090
// cdb-check:str_slice : "IAMA string slice!" [Type: ref$<str$>]
@@ -141,8 +141,8 @@
141141
// cdb-check: [<Raw View>] [Type: alloc::collections::vec_deque::VecDeque<i32,alloc::alloc::Global>]
142142
// cdb-check: [len] : 0x2 [Type: unsigned [...]]
143143
// cdb-check: [capacity] : 0x8 [Type: unsigned [...]]
144-
// cdb-check: [0x0] : 90 [Type: int]
145-
// cdb-check: [0x1] : 20 [Type: int]
144+
// cdb-check: [0x0] : 90 [Type: i32]
145+
// cdb-check: [0x1] : 20 [Type: i32]
146146

147147
#![allow(unused_variables)]
148148
use std::collections::{LinkedList, VecDeque};

0 commit comments

Comments
 (0)