mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-14 14:45:40 +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"
|
|
);
|
|
}
|