mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-25 02:12:13 +00:00
This change also cleans up the `wasi-test` generation a bit. It's actually still really, really messy, but at least now it's split up into easier to understand chunks. There's still a lot of low-hanging fruit in terms of improving the readibilty and maintainability of the code.
19 lines
512 B
Rust
19 lines
512 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_snapshot1_path_rename() {
|
|
assert_wasi_output!(
|
|
"../../wasitests/snapshot1/path_rename.wasm",
|
|
"snapshot1_path_rename",
|
|
vec![],
|
|
vec![(
|
|
"temp".to_string(),
|
|
::std::path::PathBuf::from("wasitests/test_fs/temp")
|
|
),],
|
|
vec![],
|
|
"../../wasitests/path_rename.out"
|
|
);
|
|
}
|