mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
15 lines
313 B
Rust
15 lines
313 B
Rust
|
#[test]
|
||
|
fn test_fd_sync() {
|
||
|
assert_wasi_output!(
|
||
|
"../../wasitests/fd_sync.wasm",
|
||
|
"fd_sync",
|
||
|
vec![],
|
||
|
vec![(
|
||
|
".".to_string(),
|
||
|
::std::path::PathBuf::from("wasitests/test_fs/temp")
|
||
|
),],
|
||
|
vec![],
|
||
|
"../../wasitests/fd_sync.out"
|
||
|
);
|
||
|
}
|