File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff 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
331332endif
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
344349TEST_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
356365TEST_PACKAGES_DARWIN := $(TEST_PACKAGES_LINUX )
You can’t perform that action at this time.
0 commit comments