mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-20 04:19:04 +00:00
os: skip TestDirFSPathsValid on WASI to work around #2828 on windows
This commit is contained in:
@@ -298,6 +298,10 @@ func TestDirFSPathsValid(t *testing.T) {
|
|||||||
t.Log("skipping on Windows")
|
t.Log("skipping on Windows")
|
||||||
return
|
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
|
// TODO: switch back to t.TempDir once it's implemented
|
||||||
d, err := MkdirTemp("", "TestDirFSPathsValid")
|
d, err := MkdirTemp("", "TestDirFSPathsValid")
|
||||||
|
|||||||
Reference in New Issue
Block a user