mirror of
https://github.com/fluencelabs/wasmer
synced 2025-05-28 17:41:20 +00:00
15 lines
336 B
Rust
15 lines
336 B
Rust
|
#[test]
|
||
|
fn test_poll_oneoff() {
|
||
|
assert_wasi_output!(
|
||
|
"../../wasitests/poll_oneoff.wasm",
|
||
|
"poll_oneoff",
|
||
|
vec![],
|
||
|
vec![(
|
||
|
"hamlet".to_string(),
|
||
|
::std::path::PathBuf::from("wasitests/test_fs/hamlet")
|
||
|
),],
|
||
|
vec![],
|
||
|
"../../wasitests/poll_oneoff.out"
|
||
|
);
|
||
|
}
|