Modify run_pipe_test.

This commit is contained in:
Yifan Wu 2022-12-14 00:20:45 +08:00
parent 775755cf12
commit b1173161fc

View file

@ -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::<u8>()]);
} else {