wasmer/lib/emscripten/tests/emtests/test_execvp.rs

18 lines
428 B
Rust
Raw Normal View History

2019-03-01 18:59:52 +00:00
#[test]
fn test_execvp() {
#[cfg(not(target_os = "windows"))]
assert_emscripten_output!(
"../../emtests/test_execvp.wasm",
"test_execvp",
vec![],
"../../emtests/test_execvp.out"
);
#[cfg(target_os = "windows")]
assert_emscripten_output!(
"../../emtests/test_execvp_windows.wasm",
"test_execvp",
vec![],
"../../emtests/test_execvp.out"
);
}