aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorDamian Gryski <[email protected]>2023-02-13 15:23:49 -0800
committerAyke <[email protected]>2023-02-14 05:17:46 -0800
commitd899895e324c7a9d60832d14f4d5b825d7bb8943 (patch)
tree1d002c3a1e4da9d57f970015458839ddfd20a392 /Makefile
parent0d56dee00f49bd50eb373c02c30062a75ec28f10 (diff)
downloadtinygo-d899895e324c7a9d60832d14f4d5b825d7bb8943.tar.gz
tinygo-d899895e324c7a9d60832d14f4d5b825d7bb8943.zip
Makefile: more stdlib tests for CI
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 452b01710..53cc98d2b 100644
--- a/Makefile
+++ b/Makefile
@@ -296,6 +296,7 @@ TEST_PACKAGES_FAST = \
encoding \
encoding/ascii85 \
encoding/base32 \
+ encoding/base64 \
encoding/csv \
encoding/hex \
go/scanner \
@@ -331,26 +332,34 @@ TEST_PACKAGES_FAST += crypto/elliptic/internal/fiat
endif
# archive/zip requires os.ReadAt, which is not yet supported on windows
+# bytes requires mmap
# compress/flate appears to hang on wasi
# compress/lzw appears to hang on wasi
# 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
# io/ioutil requires os.ReadDir, which is not yet supported on windows or wasi
+# mime/quotedprintable requires syscall.Faccessat
# strconv requires recover() which is not yet supported on wasi
+# text/tabwriter requries recover(), which is not yet supported on wasi
# text/template/parse requires recover(), which is not yet supported on wasi
# testing/fstest requires os.ReadDir, which is not yet supported on windows or wasi
# Additional standard library packages that pass tests on individual platforms
TEST_PACKAGES_LINUX := \
archive/zip \
+ bytes \
compress/flate \
compress/lzw \
crypto/hmac \
debug/dwarf \
debug/plan9obj \
+ image \
io/ioutil \
+ mime/quotedprintable \
strconv \
testing/fstest \
+ text/tabwriter \
text/template/parse
TEST_PACKAGES_DARWIN := $(TEST_PACKAGES_LINUX)