File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -296,6 +296,7 @@ TEST_PACKAGES_FAST = \
296
296
encoding \
297
297
encoding/ascii85 \
298
298
encoding/base32 \
299
+ encoding/base64 \
299
300
encoding/csv \
300
301
encoding/hex \
301
302
go/scanner \
@@ -331,26 +332,34 @@ TEST_PACKAGES_FAST += crypto/elliptic/internal/fiat
331
332
endif
332
333
333
334
# archive/zip requires os.ReadAt, which is not yet supported on windows
335
+ # bytes requires mmap
334
336
# compress/flate appears to hang on wasi
335
337
# compress/lzw appears to hang on wasi
336
338
# crypto/hmac fails on wasi, it exits with a "slice out of range" panic
337
339
# debug/plan9obj requires os.ReadAt, which is not yet supported on windows
340
+ # image requires recover(), which is not yet supported on wasi
338
341
# io/ioutil requires os.ReadDir, which is not yet supported on windows or wasi
342
+ # mime/quotedprintable requires syscall.Faccessat
339
343
# strconv requires recover() which is not yet supported on wasi
344
+ # text/tabwriter requries recover(), which is not yet supported on wasi
340
345
# text/template/parse requires recover(), which is not yet supported on wasi
341
346
# testing/fstest requires os.ReadDir, which is not yet supported on windows or wasi
342
347
343
348
# Additional standard library packages that pass tests on individual platforms
344
349
TEST_PACKAGES_LINUX := \
345
350
archive/zip \
351
+ bytes \
346
352
compress/flate \
347
353
compress/lzw \
348
354
crypto/hmac \
349
355
debug/dwarf \
350
356
debug/plan9obj \
357
+ image \
351
358
io/ioutil \
359
+ mime/quotedprintable \
352
360
strconv \
353
361
testing/fstest \
362
+ text/tabwriter \
354
363
text/template/parse
355
364
356
365
TEST_PACKAGES_DARWIN := $(TEST_PACKAGES_LINUX )
You can’t perform that action at this time.
0 commit comments