Skip to content

Commit

Permalink
make helpers not silent for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
eriktaubeneck authored and cberkhoff committed Dec 6, 2024
1 parent b15b58d commit 06c8b2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ipa-core/tests/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,9 @@ pub fn spawn_shards(
command.args(["--shard-server-socket-fd", &shard.as_raw_fd().to_string()]);

// something went wrong if command is terminated at this point.
let mut child = command.silent().spawn().unwrap();
// let mut child = command.silent().spawn().unwrap();
// TODO: make this silent again
let mut child = command.spawn().unwrap();
match child.try_wait() {
Ok(Some(status)) => {
panic!("Helper binary terminated early with status = {status}")
Expand Down

0 comments on commit 06c8b2e

Please sign in to comment.