mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-21 21:09:02 +00:00
os: skip TestDirFS on wasi until #2827 is fixed
This commit is contained in:
@@ -277,6 +277,10 @@ func TestDirFS(t *testing.T) {
|
||||
t.Log("TODO: implement Readdir for Windows")
|
||||
return
|
||||
}
|
||||
if isWASI {
|
||||
t.Log("TODO: allow foo/bar/. as synonym for path foo/bar on wasi?")
|
||||
return
|
||||
}
|
||||
if err := fstest.TestFS(DirFS("./testdata/dirfs"), "a", "b", "dir/x"); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user