os: skip TestDirFSPathsValid on WASI to work around #2828 on windows

Этот коммит содержится в:
Dan Kegel 2022-05-01 21:36:38 -07:00 коммит произвёл Ron Evans
родитель 270a2f51fd
коммит 1d2c39c3b9

Просмотреть файл

@ -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")