Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions implants/lib/eldritchv2/stdlib/eldritch-libprocess/src/std.rs
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,9 @@ mod tests {

// Handle windows
#[cfg(windows)]
let mut cmd = Command::new("timeout");
let mut cmd = Command::new("ping");
#[cfg(windows)]
cmd.arg("10");
cmd.args(["-n", "10", "127.0.0.1"]);

if let Ok(mut child) = cmd.spawn() {
let pid = child.id() as i64;
Expand Down