7 lines
158 B
Rust
7 lines
158 B
Rust
|
fn main() {
|
||
|
let status = std::process::Command::new("make")
|
||
|
.status()
|
||
|
.expect("failed to execute make");
|
||
|
assert!(status.success());
|
||
|
}
|