about summary refs log tree commit diff
diff options
context:
space:
mode:
authorjoboet <jonasboettiger@icloud.com>2024-01-12 08:50:14 +0100
committerjoboet <jonasboettiger@icloud.com>2024-01-12 08:50:14 +0100
commitdf3cb23e01bb661ee06e28d9822e5ab320094788 (patch)
treed5f3e2037f0ca771a400da711ee2edbc72348851
parent7c436a8af4a6363f7c57abff6f85c152154d9d49 (diff)
downloadrust-df3cb23e01bb661ee06e28d9822e5ab320094788.tar.gz
rust-df3cb23e01bb661ee06e28d9822e5ab320094788.zip
update debuginfo tests on Windows
-rw-r--r--tests/debuginfo/mutex.rs2
-rw-r--r--tests/debuginfo/rwlock-read.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/debuginfo/mutex.rs b/tests/debuginfo/mutex.rs
index 61ec6a81243..7a58c5c2224 100644
--- a/tests/debuginfo/mutex.rs
+++ b/tests/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::windows::locks::mutex::Mutex]
+// cdb-check:    [...] inner            [Type: std::sys::pal::windows::locks::mutex::Mutex]
 // cdb-check:    [...] poison           [Type: std::sync::poison::Flag]
 // cdb-check:    [...] data             : 0 [Type: core::cell::UnsafeCell<i32>]
 
diff --git a/tests/debuginfo/rwlock-read.rs b/tests/debuginfo/rwlock-read.rs
index bc42f92f053..4ed1ebd0b37 100644
--- a/tests/debuginfo/rwlock-read.rs
+++ b/tests/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::windows::locks::rwlock::RwLock *]
+// cdb-check:    [...] inner_lock       : [...] [Type: std::sys::pal::windows::locks::rwlock::RwLock *]
 
 #[allow(unused_variables)]