about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorjoboet <jonasboettiger@icloud.com>2022-11-06 21:44:33 +0100
committerjoboet <jonasboettiger@icloud.com>2022-11-10 17:31:23 +0100
commitf30614a08877fac8c78113bd7823e1f4c9d20633 (patch)
tree652e131ad03ca03f4883adeaf2d801195870d02b /src/test
parent168f1f1d418f6fba0cb8df6ee892f5208c319ff7 (diff)
downloadrust-f30614a08877fac8c78113bd7823e1f4c9d20633.tar.gz
rust-f30614a08877fac8c78113bd7823e1f4c9d20633.zip
update debuginfo check
Diffstat (limited to 'src/test')
-rw-r--r--src/test/debuginfo/mutex.rs2
-rw-r--r--src/test/debuginfo/rwlock-read.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/debuginfo/mutex.rs b/src/test/debuginfo/mutex.rs
index 314ba40b0e3..61ec6a81243 100644
--- a/src/test/debuginfo/mutex.rs
+++ b/src/test/debuginfo/mutex.rs
@@ -10,7 +10,7 @@
 //
 // cdb-command:dx m,d
 // cdb-check:m,d              [Type: std::sync::mutex::Mutex<i32>]
-// cdb-check:    [...] inner            [Type: std::sys_common::mutex::MovableMutex]
+// cdb-check:    [...] inner            [Type: std::sys::windows::locks::mutex::Mutex]
 // cdb-check:    [...] poison           [Type: std::sync::poison::Flag]
 // cdb-check:    [...] data             : 0 [Type: core::cell::UnsafeCell<i32>]
 
diff --git a/src/test/debuginfo/rwlock-read.rs b/src/test/debuginfo/rwlock-read.rs
index ed9aae16b0d..bc42f92f053 100644
--- a/src/test/debuginfo/rwlock-read.rs
+++ b/src/test/debuginfo/rwlock-read.rs
@@ -16,7 +16,7 @@
 // cdb-command:dx r
 // cdb-check:r                [Type: std::sync::rwlock::RwLockReadGuard<i32>]
 // cdb-check:    [...] data             : NonNull([...]: 0) [Type: core::ptr::non_null::NonNull<i32>]
-// cdb-check:    [...] inner_lock       : [...] [Type: std::sys_common::rwlock::MovableRwLock *]
+// cdb-check:    [...] inner_lock       : [...] [Type: std::sys::windows::locks::rwlock::RwLock *]
 
 #[allow(unused_variables)]