wasmer/lib/wasi-tests/tests/wasitests/fd_allocate.rs
2019-08-05 14:01:04 +09:00

15 lines
329 B
Rust

#[test]
fn test_fd_allocate() {
assert_wasi_output!(
"../../wasitests/fd_allocate.wasm",
"fd_allocate",
vec![],
vec![(
".".to_string(),
::std::path::PathBuf::from("wasitests/test_fs/temp")
),],
vec![],
"../../wasitests/fd_allocate.out"
);
}