about summary refs log tree commit diff
path: root/library/std/src/sync/condvar/tests.rs
AgeCommit message (Collapse)AuthorLines
2025-01-02Move some things to `std::sync::poison` and reexport them in `std::sync`Pavel Grigorenko-190/+0
2024-09-29Fix std tests for wasm32-wasip2 targetNicola Krumschmidt-8/+8
2024-03-20SeqCst->Relaxed in condvar test.Mara Bos-2/+2
Relaxed is enough here. Synchronization is done by the mutex.
2022-05-05Remove condvar::two_mutexes test.Mara Bos-21/+0
We don't guarantee this panics. On most platforms it doesn't anymore.
2022-03-23Update tests.Mara Bos-1/+1
2020-10-02Disable condvar::two_mutexes test on non-unix platforms.Mara Bos-1/+1
Condvars are no longer guaranteed to panic in this case on all platforms. At least the unix implementation still does.
2020-08-31std: move "mod tests/benches" to separate filesLzu Tao-0/+211
Also doing fmt inplace as requested.