Skip to content
Prev Previous commit
reduce threads in downgrade test
  • Loading branch information
connortsui20 committed Nov 16, 2024
commit fc52cdd9a8b9c2b2e21b0976373e6b54f4c3b5fa
2 changes: 1 addition & 1 deletion library/std/src/sync/rwlock/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ fn test_downgrade_observe() {
// Taken from the test `test_rwlock_downgrade` from:
// https://github.com/Amanieu/parking_lot/blob/master/src/rwlock.rs

const W: usize = if cfg!(target_pointer_width = "64") { 100 } else { 20 };
const W: usize = 20;
const N: usize = 100;

// This test spawns `W` writer threads, where each will increment a counter `N` times, ensuring
Expand Down
Loading