Skip to content

Commit ffc4fd0

Browse files
committed
Add prints in tests
1 parent b9a6cf4 commit ffc4fd0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/process/process_group.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ mod test {
322322

323323
drop(pgrp);
324324

325+
println!("elapsed time {}ms", start_time.elapsed().as_millis());
325326
assert!(start_time.elapsed().as_millis() > 1000);
326327

327328
Ok(())
@@ -337,6 +338,7 @@ mod test {
337338

338339
pgrp.wait_for_success()?;
339340

341+
println!("elapsed time {}ms", start_time.elapsed().as_millis());
340342
assert!(start_time.elapsed().as_secs() < 1000);
341343

342344
Ok(())

0 commit comments

Comments
 (0)