From c48a2b579673d4f4034bb7275165b72077e60fbd Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 11 Apr 2019 00:13:16 -0400 Subject: make the amount of delay variable --- tests/set4.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'tests') diff --git a/tests/set4.rs b/tests/set4.rs index ebcbd76..5095b6a 100644 --- a/tests/set4.rs +++ b/tests/set4.rs @@ -197,6 +197,7 @@ fn problem_31() { let (kill_w, kill_r) = std::sync::mpsc::channel(); std::thread::spawn(move || { let mut child = std::process::Command::new(server_bin) + .args(&["50"]) .stdout(std::process::Stdio::piped()) .spawn() .unwrap(); -- cgit v1.2.3-54-g00ecf