mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 14b96f6f68 |
+28
@@ -299,30 +299,39 @@ test: wasi-libc check-nodejs-version
|
|||||||
TEST_PACKAGES_SLOW = \
|
TEST_PACKAGES_SLOW = \
|
||||||
compress/bzip2 \
|
compress/bzip2 \
|
||||||
crypto/dsa \
|
crypto/dsa \
|
||||||
|
crypto/ecdsa \
|
||||||
index/suffixarray \
|
index/suffixarray \
|
||||||
|
|
||||||
# Standard library packages that pass tests quickly on darwin, linux, wasi, and windows
|
# Standard library packages that pass tests quickly on darwin, linux, wasi, and windows
|
||||||
TEST_PACKAGES_FAST = \
|
TEST_PACKAGES_FAST = \
|
||||||
|
cmp \
|
||||||
compress/lzw \
|
compress/lzw \
|
||||||
compress/zlib \
|
compress/zlib \
|
||||||
container/heap \
|
container/heap \
|
||||||
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 \
|
||||||
crypto/sha256 \
|
crypto/sha256 \
|
||||||
crypto/sha512 \
|
crypto/sha512 \
|
||||||
|
database/sql/driver \
|
||||||
debug/macho \
|
debug/macho \
|
||||||
|
embed \
|
||||||
embed/internal/embedtest \
|
embed/internal/embedtest \
|
||||||
encoding \
|
encoding \
|
||||||
encoding/ascii85 \
|
encoding/ascii85 \
|
||||||
|
encoding/asn1 \
|
||||||
encoding/base32 \
|
encoding/base32 \
|
||||||
encoding/base64 \
|
encoding/base64 \
|
||||||
encoding/csv \
|
encoding/csv \
|
||||||
encoding/hex \
|
encoding/hex \
|
||||||
|
go/ast \
|
||||||
|
go/format \
|
||||||
go/scanner \
|
go/scanner \
|
||||||
|
go/version \
|
||||||
hash \
|
hash \
|
||||||
hash/adler32 \
|
hash/adler32 \
|
||||||
hash/crc64 \
|
hash/crc64 \
|
||||||
@@ -334,6 +343,7 @@ TEST_PACKAGES_FAST = \
|
|||||||
math/cmplx \
|
math/cmplx \
|
||||||
net/http/internal/ascii \
|
net/http/internal/ascii \
|
||||||
net/mail \
|
net/mail \
|
||||||
|
net/textproto \
|
||||||
os \
|
os \
|
||||||
path \
|
path \
|
||||||
reflect \
|
reflect \
|
||||||
@@ -357,11 +367,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
|
||||||
|
# context requires recover(), which is not yet supported on wasi
|
||||||
|
# crypto/aes requires recover(), which is not yet supported on wasi
|
||||||
# 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
|
||||||
|
# go/build/constraint requires recover(), which is not yet supported on wasi
|
||||||
# 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 exits with "bufio.Scanner: Read returned impossible count" on wasi
|
||||||
|
# mime/multipart has a nil pointer dereference (stack overflow?)
|
||||||
# mime/quotedprintable requires syscall.Faccessat
|
# mime/quotedprintable requires syscall.Faccessat
|
||||||
|
# regexp/syntax requires recover() which is not yet supported on wasi
|
||||||
# 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 +387,20 @@ endif
|
|||||||
TEST_PACKAGES_LINUX := \
|
TEST_PACKAGES_LINUX := \
|
||||||
archive/zip \
|
archive/zip \
|
||||||
compress/flate \
|
compress/flate \
|
||||||
|
context \
|
||||||
|
crypto/aes \
|
||||||
crypto/hmac \
|
crypto/hmac \
|
||||||
debug/dwarf \
|
debug/dwarf \
|
||||||
debug/plan9obj \
|
debug/plan9obj \
|
||||||
|
go/build/constraint \
|
||||||
image \
|
image \
|
||||||
io/ioutil \
|
io/ioutil \
|
||||||
|
mime \
|
||||||
|
mime/multipart \
|
||||||
mime/quotedprintable \
|
mime/quotedprintable \
|
||||||
net \
|
net \
|
||||||
os/user \
|
os/user \
|
||||||
|
regexp/syntax \
|
||||||
strconv \
|
strconv \
|
||||||
text/tabwriter \
|
text/tabwriter \
|
||||||
text/template/parse
|
text/template/parse
|
||||||
@@ -387,8 +409,14 @@ TEST_PACKAGES_DARWIN := $(TEST_PACKAGES_LINUX)
|
|||||||
|
|
||||||
TEST_PACKAGES_WINDOWS := \
|
TEST_PACKAGES_WINDOWS := \
|
||||||
compress/flate \
|
compress/flate \
|
||||||
|
context \
|
||||||
|
crypto/aes \
|
||||||
crypto/hmac \
|
crypto/hmac \
|
||||||
|
go/build/constraint \
|
||||||
|
mime \
|
||||||
|
mime/multipart \
|
||||||
os/user \
|
os/user \
|
||||||
|
regexp/syntax \
|
||||||
strconv \
|
strconv \
|
||||||
text/template/parse \
|
text/template/parse \
|
||||||
$(nil)
|
$(nil)
|
||||||
|
|||||||
Reference in New Issue
Block a user