From 280a61ad7b74019c7aad8b7306a0dd7cfb11359c Mon Sep 17 00:00:00 2001 From: Botahamec Date: Sun, 12 Jan 2025 15:04:01 -0500 Subject: More unit tests --- src/rwlock/write_guard.rs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/rwlock/write_guard.rs') diff --git a/src/rwlock/write_guard.rs b/src/rwlock/write_guard.rs index aec3d3d..ff559b8 100644 --- a/src/rwlock/write_guard.rs +++ b/src/rwlock/write_guard.rs @@ -33,12 +33,14 @@ impl Ord for RwLockWriteRef<'_, T, R> { } } +#[mutants::skip] // hashing involves PRNG and is difficult to test impl Hash for RwLockWriteRef<'_, T, R> { fn hash(&self, state: &mut H) { self.deref().hash(state) } } +#[mutants::skip] impl Debug for RwLockWriteRef<'_, T, R> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { Debug::fmt(&**self, f) @@ -100,6 +102,7 @@ impl<'a, T: ?Sized + 'a, R: RawRwLock> RwLockWriteRef<'a, T, R> { } } +#[mutants::skip] // it's hard to get two read guards safely impl PartialEq for RwLockWriteGuard<'_, '_, T, Key, R> { @@ -108,8 +111,10 @@ impl PartialEq } } +#[mutants::skip] // it's hard to get two read guards safely impl Eq for RwLockWriteGuard<'_, '_, T, Key, R> {} +#[mutants::skip] // it's hard to get two read guards safely impl PartialOrd for RwLockWriteGuard<'_, '_, T, Key, R> { @@ -118,18 +123,21 @@ impl PartialOrd } } +#[mutants::skip] // it's hard to get two read guards safely impl Ord for RwLockWriteGuard<'_, '_, T, Key, R> { fn cmp(&self, other: &Self) -> std::cmp::Ordering { self.deref().cmp(&**other) } } +#[mutants::skip] // hashing involves PRNG and is difficult to test impl Hash for RwLockWriteGuard<'_, '_, T, Key, R> { fn hash(&self, state: &mut H) { self.deref().hash(state) } } +#[mutants::skip] impl Debug for RwLockWriteGuard<'_, '_, T, Key, R> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { Debug::fmt(&**self, f) -- cgit v1.2.3