(cmd: &mut Command)
| 232 | } |
| 233 | |
| 234 | fn run_cmd(cmd: &mut Command) { |
| 235 | let status = cmd_status(cmd); |
| 236 | assert!( |
| 237 | status.success(), |
| 238 | "Command `{:?}` exited with failure status: {}", |
| 239 | cmd, |
| 240 | status |
| 241 | ); |
| 242 | } |
| 243 | |
| 244 | fn find_crates(dir: &Path, ws: &Workspace, dst: &mut Vec<Crate>) { |
| 245 | if dir.join("Cargo.toml").exists() { |
no test coverage detected