From 8eedd2b04bb2c142f4a90e45ca5d01eb6a697ab7 Mon Sep 17 00:00:00 2001 From: Dan Kegel Date: Tue, 18 Jan 2022 18:02:56 -0800 Subject: [PATCH] Makefile: add archive/zip to TEST_PACKAGES Except on windows, where it fails because it needs ReadAt, which we don't implement on windows yet. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 61f59791..3a3bf67b 100644 --- a/Makefile +++ b/Makefile @@ -262,6 +262,9 @@ TEST_PACKAGES_BASE = \ # Standard library packages that pass tests natively TEST_PACKAGES = \ +ifneq ($(OS),Windows_NT) # archive/zip requires ReadAt, which is not yet supported on windows + archive/zip \ +endif $(TEST_PACKAGES_BASE) # Standard library packages that pass tests on wasi