Skip to content

Commit

Permalink
tcp-stress-test.rs: Only spawn 200 threads.
Browse files Browse the repository at this point in the history
  • Loading branch information
the-kenny committed Aug 1, 2016
1 parent aaf8a6e commit 3ea293d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/run-pass/tcp-stress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use std::sync::mpsc::channel;
use std::time::Duration;
use std::thread::{self, Builder};

const TARGET_CNT: usize = 1000;
const TARGET_CNT: usize = 200;

fn main() {
// This test has a chance to time out, try to not let it time out
Expand Down

0 comments on commit 3ea293d

Please sign in to comment.