wasmer/lib/wasi-tests/tests/wasitests/fd_allocate.rs

15 lines
329 B
Rust
Raw Normal View History

2019-08-05 05:01:04 +00:00
#[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"
);
}