From c89f02653231c5bbcaf7c0bbca30d5ef332e0eda Mon Sep 17 00:00:00 2001 From: Dan Kegel Date: Mon, 18 Apr 2022 07:31:43 -0700 Subject: [PATCH] Makefile: tinygo-test: skip compress/flate test on windows for now Lets us move forward until https://github.com/tinygo-org/tinygo/issues/2762 is fixed. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 925ceaa8..12b36b66 100644 --- a/Makefile +++ b/Makefile @@ -216,7 +216,6 @@ test: wasi-libc # Standard library packages that pass tests on darwin, linux, wasi, and windows, but take over a minute in wasi TEST_PACKAGES_SLOW = \ compress/bzip2 \ - compress/flate \ crypto/dsa \ index/suffixarray \ @@ -269,10 +268,12 @@ TEST_PACKAGES_FAST = \ # debug/plan9obj requires os.ReadAt, which is not yet supported on windows # io/fs requires os.ReadDir, which is not yet supported on windows or wasi # testing/fstest requires os.ReadDir, which is not yet supported on windows or wasi +# compress/flate fails windows go 1.18, https://github.com/tinygo-org/tinygo/issues/2762 # Additional standard library packages that pass tests on individual platforms TEST_PACKAGES_LINUX := \ archive/zip \ + compress/flate \ debug/dwarf \ debug/plan9obj \ io/fs \