Skip to content

Commit 8665d3f

Browse files
committed
GNUmakefile: update stdlib test package lists
Add newly passing packages to the appropriate native and Windows standard-library test lists, and refresh comments for packages that remain disabled.
1 parent cf92e2f commit 8665d3f

1 file changed

Lines changed: 12 additions & 7 deletions

File tree

GNUmakefile

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -385,22 +385,22 @@ TEST_PACKAGES_FAST = \
385385
# archive/zip requires os.ReadAt, which is not yet supported on windows
386386
# bytes requires mmap
387387
# compress/flate appears to hang on wasi
388-
# crypto/aes fails on wasi, needs panic()/recover()
388+
# crypto/aes needs reflect.Type.Method(), not yet implemented
389389
# crypto/des fails on wasi, needs panic()/recover()
390390
# crypto/hmac fails on wasi, it exits with a "slice out of range" panic
391391
# debug/plan9obj requires os.ReadAt, which is not yet supported on windows
392392
# encoding/xml takes a minute on linux and gives a stack overflow on wasi
393-
# image requires recover(), which is not yet supported on wasi
393+
# image fails on wasi, needs panic()/recover()
394394
# io/ioutil requires os.ReadDir, which is not yet supported on windows or wasi
395-
# mime: fail on wasi; neds panic()/recover()
395+
# mime: fails on wasi, needs panic()/recover()
396396
# mime/multipart: needs wasip1 syscall.FDFLAG_NONBLOCK
397397
# mime/quotedprintable requires syscall.Faccessat
398398
# net/mail: needs wasip1 syscall.FDFLAG_NONBLOCK
399399
# net/ntextproto: needs wasip1 syscall.FDFLAG_NONBLOCK
400-
# regexp/syntax: fails on wasip1; needs panic()/recover()
401-
# strconv requires recover() which is not yet supported on wasi
402-
# text/tabwriter requires recover(), which is not yet supported on wasi
403-
# text/template/parse requires recover(), which is not yet supported on wasi
400+
# regexp/syntax: fails on wasip1, needs panic()/recover()
401+
# strconv: fails on wasi, needs panic()/recover()
402+
# text/tabwriter: fails on wasi, needs panic()/recover()
403+
# text/template/parse: fails on wasi, needs panic()/recover()
404404
# testing/fstest requires os.ReadDir, which is not yet supported on windows or wasi
405405

406406
# Additional standard library packages that pass tests on individual platforms
@@ -425,6 +425,7 @@ TEST_PACKAGES_LINUX := \
425425
os/user \
426426
regexp/syntax \
427427
strconv \
428+
testing/fstest \
428429
text/tabwriter \
429430
text/template/parse
430431

@@ -435,7 +436,11 @@ TEST_PACKAGES_WINDOWS := \
435436
compress/flate \
436437
crypto/des \
437438
crypto/hmac \
439+
image \
440+
mime \
441+
regexp/syntax \
438442
strconv \
443+
text/tabwriter \
439444
text/template/parse \
440445
$(nil)
441446

0 commit comments

Comments
 (0)