@@ -309,6 +309,7 @@ TEST_PACKAGES_FAST = \
309
309
container/list \
310
310
container/ring \
311
311
crypto/des \
312
+ crypto/elliptic \
312
313
crypto/md5 \
313
314
crypto/rc4 \
314
315
crypto/sha1 \
@@ -322,6 +323,8 @@ TEST_PACKAGES_FAST = \
322
323
encoding/base64 \
323
324
encoding/csv \
324
325
encoding/hex \
326
+ go/ast \
327
+ go/format \
325
328
go/scanner \
326
329
hash \
327
330
hash/adler32 \
@@ -357,11 +360,17 @@ endif
357
360
# archive/zip requires os.ReadAt, which is not yet supported on windows
358
361
# bytes requires mmap
359
362
# compress/flate appears to hang on wasi
363
+ # crypto/aes fails on wasi, needs panic()/recover()
360
364
# crypto/hmac fails on wasi, it exits with a "slice out of range" panic
361
365
# debug/plan9obj requires os.ReadAt, which is not yet supported on windows
362
366
# image requires recover(), which is not yet supported on wasi
363
367
# io/ioutil requires os.ReadDir, which is not yet supported on windows or wasi
368
+ # mime: fail on wasi; neds panic()/recover()
369
+ # mime/multipart: needs wasip1 syscall.FDFLAG_NONBLOCK
364
370
# mime/quotedprintable requires syscall.Faccessat
371
+ # net/mail: needs wasip1 syscall.FDFLAG_NONBLOCK
372
+ # net/ntextproto: needs wasip1 syscall.FDFLAG_NONBLOCK
373
+ # regexp/syntax: fails on wasip1; needs panic()/recover()
365
374
# strconv requires recover() which is not yet supported on wasi
366
375
# text/tabwriter requires recover(), which is not yet supported on wasi
367
376
# text/template/parse requires recover(), which is not yet supported on wasi
@@ -371,14 +380,20 @@ endif
371
380
TEST_PACKAGES_LINUX := \
372
381
archive/zip \
373
382
compress/flate \
383
+ crypto/aes \
374
384
crypto/hmac \
375
385
debug/dwarf \
376
386
debug/plan9obj \
377
387
image \
378
388
io/ioutil \
389
+ mime \
390
+ mime/multipart \
379
391
mime/quotedprintable \
380
392
net \
393
+ net/mail \
394
+ net/textproto \
381
395
os/user \
396
+ regexp/syntax \
382
397
strconv \
383
398
text/tabwriter \
384
399
text/template/parse
0 commit comments