-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wasi: skips fd_readdir until fixed upstream #1098
Conversation
The current fd_readdir test is invalid as it requires dot and dot-dot entries, which both aren't required by POSIX nor returned by go. Once this is addressed upstream, we can remove the skip. See WebAssembly/wasi-testsuite#52 See #1036 Signed-off-by: Adrian Cole <[email protected]>
Signed-off-by: Adrian Cole <[email protected]>
the testsuite repo is overlapping the wazero mount so not finding the exclude. I'll move it to the testsuite fork.. |
Signed-off-by: Adrian Cole <[email protected]>
ok finally works! technically, we aren't losing any coverage because we have a lot of tests around
|
specifically, we have stat and entries tests for zig, clang, rust and go (GOOS=js) in our normal test tree, plus the zig integration tests, and when tinygo implements readdir we'll have those as well. |
so, we are down to 3 legit failures from wasi-testsuite, now. We promised to pass all or have a very good reason for why not, so I think we're on track for this commitment by next version. |
Signed-off-by: Adrian Cole <[email protected]>
The current fd_readdir test is invalid as it requires dot and dot-dot entries, which both aren't required by POSIX nor returned by go. Once this is addressed upstream, we can remove the skip.
See WebAssembly/wasi-testsuite#52
See #1036