mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-13 23:43:40 +00:00
GNUmakefile: add some more passing stdlib tests (#4492)
This commit is contained in:
+15
@@ -309,6 +309,7 @@ TEST_PACKAGES_FAST = \
|
|||||||
container/list \
|
container/list \
|
||||||
container/ring \
|
container/ring \
|
||||||
crypto/des \
|
crypto/des \
|
||||||
|
crypto/elliptic \
|
||||||
crypto/md5 \
|
crypto/md5 \
|
||||||
crypto/rc4 \
|
crypto/rc4 \
|
||||||
crypto/sha1 \
|
crypto/sha1 \
|
||||||
@@ -322,6 +323,8 @@ TEST_PACKAGES_FAST = \
|
|||||||
encoding/base64 \
|
encoding/base64 \
|
||||||
encoding/csv \
|
encoding/csv \
|
||||||
encoding/hex \
|
encoding/hex \
|
||||||
|
go/ast \
|
||||||
|
go/format \
|
||||||
go/scanner \
|
go/scanner \
|
||||||
hash \
|
hash \
|
||||||
hash/adler32 \
|
hash/adler32 \
|
||||||
@@ -357,11 +360,17 @@ endif
|
|||||||
# archive/zip requires os.ReadAt, which is not yet supported on windows
|
# archive/zip requires os.ReadAt, which is not yet supported on windows
|
||||||
# bytes requires mmap
|
# bytes requires mmap
|
||||||
# compress/flate appears to hang on wasi
|
# 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
|
# 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
|
# debug/plan9obj requires os.ReadAt, which is not yet supported on windows
|
||||||
# image requires recover(), which is not yet supported on wasi
|
# image requires recover(), which is not yet supported on wasi
|
||||||
# io/ioutil requires os.ReadDir, which is not yet supported on windows or wasi
|
# 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
|
# 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
|
# strconv requires recover() which is not yet supported on wasi
|
||||||
# text/tabwriter 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
|
# text/template/parse requires recover(), which is not yet supported on wasi
|
||||||
@@ -371,14 +380,20 @@ endif
|
|||||||
TEST_PACKAGES_LINUX := \
|
TEST_PACKAGES_LINUX := \
|
||||||
archive/zip \
|
archive/zip \
|
||||||
compress/flate \
|
compress/flate \
|
||||||
|
crypto/aes \
|
||||||
crypto/hmac \
|
crypto/hmac \
|
||||||
debug/dwarf \
|
debug/dwarf \
|
||||||
debug/plan9obj \
|
debug/plan9obj \
|
||||||
image \
|
image \
|
||||||
io/ioutil \
|
io/ioutil \
|
||||||
|
mime \
|
||||||
|
mime/multipart \
|
||||||
mime/quotedprintable \
|
mime/quotedprintable \
|
||||||
net \
|
net \
|
||||||
|
net/mail \
|
||||||
|
net/textproto \
|
||||||
os/user \
|
os/user \
|
||||||
|
regexp/syntax \
|
||||||
strconv \
|
strconv \
|
||||||
text/tabwriter \
|
text/tabwriter \
|
||||||
text/template/parse
|
text/template/parse
|
||||||
|
|||||||
Reference in New Issue
Block a user