diff --git a/src/os/os_anyos_test.go b/src/os/os_anyos_test.go index 51e986fc..d8ac01c2 100644 --- a/src/os/os_anyos_test.go +++ b/src/os/os_anyos_test.go @@ -298,6 +298,10 @@ func TestDirFSPathsValid(t *testing.T) { t.Log("skipping on Windows") return } + if isWASI { + t.Log("skipping on wasi because it fails on wasi on windows") + return + } // TODO: switch back to t.TempDir once it's implemented d, err := MkdirTemp("", "TestDirFSPathsValid")