mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-07 12:33:42 +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")
|
||||
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")
|
||||
|
||||
Reference in New Issue
Block a user