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

This commit is contained in:
Dan Kegel
2022-05-01 21:36:38 -07:00
committed by Ron Evans
parent 270a2f51fd
commit 1d2c39c3b9
+4
View File
@@ -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")