mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
25 lines
658 B
Rust
25 lines
658 B
Rust
// !!! THIS IS A GENERATED FILE !!!
|
|
// ANY MANUAL EDITS MAY BE OVERWRITTEN AT ANY TIME
|
|
// Files autogenerated with cargo build (build/wasitests.rs).
|
|
|
|
#[test]
|
|
fn test_path_symlink() {
|
|
assert_wasi_output!(
|
|
"../../wasitests/path_symlink.wasm",
|
|
"path_symlink",
|
|
vec![],
|
|
vec![
|
|
(
|
|
"temp".to_string(),
|
|
::std::path::PathBuf::from("wasitests/test_fs/temp")
|
|
),
|
|
(
|
|
"hamlet".to_string(),
|
|
::std::path::PathBuf::from("wasitests/test_fs/hamlet")
|
|
),
|
|
],
|
|
vec![],
|
|
"../../wasitests/path_symlink.out"
|
|
);
|
|
}
|