storkit: merge 361_story_remove_deprecated_manual_qa_front_matter_field

This commit is contained in:
Dave
2026-03-21 21:48:30 +00:00
parent eef0f3ee7d
commit 4ccc3d9149
3 changed files with 15 additions and 46 deletions

View File

@@ -1187,14 +1187,7 @@ mod tests {
/// Returns true if a process with the given PID is currently running.
fn process_is_running(pid: u32) -> bool {
std::process::Command::new("ps")
.arg("-p")
.arg(pid.to_string())
.stdout(std::process::Stdio::null())
.stderr(std::process::Stdio::null())
.status()
.map(|s| s.success())
.unwrap_or(false)
std::path::Path::new(&format!("/proc/{pid}")).exists()
}
#[test]