-
Notifications
You must be signed in to change notification settings - Fork 1.7k
macos wasi: ln -s "" "foo" succeeds #12173
Copy link
Copy link
Open
Labels
bugIncorrect behavior in the current implementation that needs fixingIncorrect behavior in the current implementation that needs fixingwasiIssues pertaining to WASIIssues pertaining to WASIwasi:implIssues pertaining to WASI implementation in WasmtimeIssues pertaining to WASI implementation in Wasmtimewasi:testsIssues pertaining to WASI tests in WasmtimeIssues pertaining to WASI tests in Wasmtime
Metadata
Metadata
Assignees
Labels
bugIncorrect behavior in the current implementation that needs fixingIncorrect behavior in the current implementation that needs fixingwasiIssues pertaining to WASIIssues pertaining to WASIwasi:implIssues pertaining to WASI implementation in WasmtimeIssues pertaining to WASI implementation in Wasmtimewasi:testsIssues pertaining to WASI tests in WasmtimeIssues pertaining to WASI tests in Wasmtime
On WebAssembly/wasi-testsuite#139, there is a test that
ln_s("".to_string(), "whatever".to_string())fails. However it succeeds on MacOS for some reason.Should wasmtime filter out
""as a symlink target, if the OS is unwilling to do so?(Does
touch ""work on (any filesystem from) MacOS? I would hope not; if so, perhaps that means we have to allow forln_stargetting"".)