You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
path_create_directory on Wasmer recursively creates directories if a directory component in path does not exist. It should return something like ENOENT.
This code snippet, when compiled with wasi crate v0.11, should pass when run. Other runtimes like Wasmtime, WasmEdge, Wazero, and WAMR do pass. Wasmer however, fails, creating the directory in the virtual filesystem.
Describe the bug
path_create_directory
on Wasmer recursively creates directories if a directory component in path does not exist. It should return something likeENOENT
.wasmer -vV; rustc -vV wasmer 4.4.0 (8b97cfe 2024-10-18) binary: wasmer-cli commit-hash: 8b97cfe3992ae3c2f0002f9955fcb23057f666a9 commit-date: 2024-10-18 host: x86_64-unknown-linux-gnu compiler: singlepass,cranelift c_api backend: rustc 1.81.0 (eeb90cda1 2024-09-04) binary: rustc commit-hash: eeb90cda1969383f56a2637cbd3037bdf598841c commit-date: 2024-09-04 host: x86_64-unknown-linux-gnu release: 1.81.0 LLVM version: 18.1.7
Steps to reproduce
This code snippet, when compiled with
wasi
crate v0.11, should pass when run. Other runtimes like Wasmtime, WasmEdge, Wazero, and WAMR do pass. Wasmer however, fails, creating the directory in the virtual filesystem.The text was updated successfully, but these errors were encountered: