mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
48 lines
1.3 KiB
Rust
48 lines
1.3 KiB
Rust
use std::process::Command;
|
|
|
|
#[test]
|
|
fn test_c_api() {
|
|
let project_tests_dir = concat!(env!("CARGO_MANIFEST_DIR"), "/tests");
|
|
|
|
run_command("cmake", project_tests_dir, vec!["."]);
|
|
run_command("make", project_tests_dir, vec!["-Wdev", "-Werror=dev"]);
|
|
run_command("make", project_tests_dir, vec!["test", "ARGS=\"-V\""]);
|
|
}
|
|
|
|
fn run_command(command_str: &str, dir: &str, args: Vec<&str>) {
|
|
println!("Running command: `{}` args: {:?}", command_str, args);
|
|
|
|
let mut command = Command::new(command_str);
|
|
|
|
command.args(&args);
|
|
|
|
command.current_dir(dir);
|
|
|
|
let result = command.output();
|
|
|
|
match result {
|
|
Ok(r) => {
|
|
println!("output:");
|
|
|
|
if let Some(code) = r.status.code() {
|
|
println!("status: {}", code);
|
|
} else {
|
|
println!("status: None");
|
|
}
|
|
|
|
println!("stdout:");
|
|
println!("{}", String::from_utf8_lossy(&r.stdout[..]));
|
|
println!("stderr:");
|
|
println!("{}", String::from_utf8_lossy(&r.stderr[..]));
|
|
|
|
if r.status.success() {
|
|
assert!(true)
|
|
} else {
|
|
panic!("Command failed with exit status: {:?}", r.status);
|
|
}
|
|
}
|
|
|
|
Err(e) => panic!("Command failed: {}", e),
|
|
}
|
|
}
|