diff --git a/user/src/bin/run_pipe_test.rs b/user/src/bin/run_pipe_test.rs index 5f50b0d631805bc30591a3bfe211a9d2953a8b96..d3e329d16eb9d4eef08cdc81ff4c3d113227e369 100644 --- a/user/src/bin/run_pipe_test.rs +++ b/user/src/bin/run_pipe_test.rs @@ -8,7 +8,7 @@ use user_lib::{exec, fork, wait}; #[no_mangle] pub fn main() -> i32 { - for i in 0..50 { + for i in 0..5 { if fork() == 0 { exec("pipe_large_test\0", &[core::ptr::null::()]); } else {