Skip to content

Commit d899895

Browse files
dgryskiaykevl
authored andcommitted
Makefile: more stdlib tests for CI
1 parent 0d56dee commit d899895

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ TEST_PACKAGES_FAST = \
296296
encoding \
297297
encoding/ascii85 \
298298
encoding/base32 \
299+
encoding/base64 \
299300
encoding/csv \
300301
encoding/hex \
301302
go/scanner \
@@ -331,26 +332,34 @@ TEST_PACKAGES_FAST += crypto/elliptic/internal/fiat
331332
endif
332333

333334
# archive/zip requires os.ReadAt, which is not yet supported on windows
335+
# bytes requires mmap
334336
# compress/flate appears to hang on wasi
335337
# compress/lzw appears to hang on wasi
336338
# crypto/hmac fails on wasi, it exits with a "slice out of range" panic
337339
# debug/plan9obj requires os.ReadAt, which is not yet supported on windows
340+
# image requires recover(), which is not yet supported on wasi
338341
# io/ioutil requires os.ReadDir, which is not yet supported on windows or wasi
342+
# mime/quotedprintable requires syscall.Faccessat
339343
# strconv requires recover() which is not yet supported on wasi
344+
# text/tabwriter requries recover(), which is not yet supported on wasi
340345
# text/template/parse requires recover(), which is not yet supported on wasi
341346
# testing/fstest requires os.ReadDir, which is not yet supported on windows or wasi
342347

343348
# Additional standard library packages that pass tests on individual platforms
344349
TEST_PACKAGES_LINUX := \
345350
archive/zip \
351+
bytes \
346352
compress/flate \
347353
compress/lzw \
348354
crypto/hmac \
349355
debug/dwarf \
350356
debug/plan9obj \
357+
image \
351358
io/ioutil \
359+
mime/quotedprintable \
352360
strconv \
353361
testing/fstest \
362+
text/tabwriter \
354363
text/template/parse
355364

356365
TEST_PACKAGES_DARWIN := $(TEST_PACKAGES_LINUX)

0 commit comments

Comments
 (0)