From d50c54fce00c542c889027246659935a8599a0a4 Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Fri, 31 Mar 2023 09:38:20 -0700 Subject: [PATCH] Makefile: compress/lzw seems to work on wasi now. --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4dae6f97c..d575f5d87 100644 --- a/Makefile +++ b/Makefile @@ -279,6 +279,7 @@ TEST_PACKAGES_SLOW = \ # Standard library packages that pass tests quickly on darwin, linux, wasi, and windows TEST_PACKAGES_FAST = \ + compress/lzw \ compress/zlib \ container/heap \ container/list \ @@ -331,7 +332,6 @@ endif # archive/zip requires os.ReadAt, which is not yet supported on windows # bytes requires mmap # compress/flate appears to hang on wasi -# compress/lzw appears to hang on wasi # crypto/hmac fails on wasi, it exits with a "slice out of range" panic # debug/plan9obj requires os.ReadAt, which is not yet supported on windows # image requires recover(), which is not yet supported on wasi @@ -347,7 +347,6 @@ TEST_PACKAGES_LINUX := \ archive/zip \ bytes \ compress/flate \ - compress/lzw \ crypto/hmac \ debug/dwarf \ debug/plan9obj \ @@ -364,7 +363,6 @@ TEST_PACKAGES_DARWIN := $(TEST_PACKAGES_LINUX) TEST_PACKAGES_WINDOWS := \ compress/flate \ - compress/lzw \ crypto/hmac \ strconv \ text/template/parse \