diff --git a/GNUmakefile b/GNUmakefile index 34be4045be..e5b4a38604 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -314,6 +314,7 @@ TEST_PACKAGES_FAST = \ crypto/sha1 \ crypto/sha256 \ crypto/sha512 \ + debug/dwarf \ debug/macho \ embed/internal/embedtest \ encoding \ @@ -322,12 +323,15 @@ TEST_PACKAGES_FAST = \ encoding/base64 \ encoding/csv \ encoding/hex \ + go/ast \ + go/format \ go/scanner \ hash \ hash/adler32 \ hash/crc64 \ hash/fnv \ html \ + internal/diff \ internal/itoa \ internal/profile \ math \ @@ -357,11 +361,18 @@ endif # archive/zip requires os.ReadAt, which is not yet supported on windows # bytes requires mmap # compress/flate appears to hang on wasi +# crypto/aes fails on wasi, needs panic()/recover() # crypto/hmac fails on wasi, it exits with a "slice out of range" panic # debug/plan9obj requires os.ReadAt, which is not yet supported on windows # image requires recover(), which is not yet supported on wasi +# go/printer: fails on wasi with nil panic; need to investigate # io/ioutil requires os.ReadDir, which is not yet supported on windows or wasi +# mime: fail on wasi; neds panic()/recover() +# mime/multipart: needs wasip1 syscall.FDFLAG_NONBLOCK # mime/quotedprintable requires syscall.Faccessat +# net/mail: needs wasip1 syscall.FDFLAG_NONBLOCK +# net/ntextproto: needs wasip1 syscall.FDFLAG_NONBLOCK +# regexp/syntax: fails on wasip1; needs panic()/recover() # strconv requires recover() which is not yet supported on wasi # text/tabwriter requires recover(), which is not yet supported on wasi # text/template/parse requires recover(), which is not yet supported on wasi @@ -371,14 +382,21 @@ endif TEST_PACKAGES_LINUX := \ archive/zip \ compress/flate \ + crypto/aes \ + crypto/elliptic \ crypto/hmac \ debug/dwarf \ debug/plan9obj \ + go/printer \ image \ io/ioutil \ + mime/multpart \ mime/quotedprintable \ net \ + net/mail \ + net/textproto \ os/user \ + regexp/syntax \ strconv \ text/tabwriter \ text/template/parse