We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tcp-stress.rs
1 parent c23f07d commit a29f000Copy full SHA for a29f000
tests/ui/threads-sendsync/tcp-stress.rs
@@ -11,7 +11,10 @@ use std::sync::mpsc::channel;
11
use std::thread::{self, Builder};
12
use std::time::Duration;
13
14
-const TARGET_CNT: usize = 200;
+// NOTE(#144878): even though this is technically a stress test, only limit to 100 threads, because
15
+// sometimes the runner might be busy and can't cleanup the previous count of 200 threads in time,
16
+// triggering timeout flaky failures.
17
+const TARGET_CNT: usize = 100;
18
19
fn main() {
20
// This test has a chance to time out, try to not let it time out
0 commit comments