-
Notifications
You must be signed in to change notification settings - Fork 954
Makefile: add tinygo-test-wasi; like tinygo-test but with -target wasi #2373
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
Makefile: add tinygo-test-wasi; like tinygo-test but with -target wasi #2373
Conversation
Looks reasonable to me. But also see #2031. |
Also if we're going to start splitting out stdlib package tests, another nice section might be "Packages which pass but fail in CI due to CPU or memory requirements." So far this includes: |
Looks like crypto/ed25519 go/format net are also passing? |
Possible, although I'd like to fix those issues instead ;) |
The net package passes for me, but the other two don't:
Really hoping for go/format support because it would be a nice feature for play.tinygo.org: formatting code directly in the browser without a server roundtrip. |
Ah, I found one: |
I've profiled it a bit and it looks like the main culprit is heap allocation. I couldn't quickly find a single obvious performance bottleneck (apart from |
|
|
|
|
194a13b
to
75a96af
Compare
Thanks everyone for working on this! Now merging. |
Skips the standard library modules whose tests don't pass yet in wasi (see recently filed bugs).