From 7914a729a5dbf25da6061f00b027fd7da66468c5 Mon Sep 17 00:00:00 2001 From: Dan Kegel Date: Wed, 19 Jan 2022 08:55:41 -0800 Subject: [PATCH] Makefile: exclude archive/zip from TEST_PACKAGES on windows until ReadAt supported --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 3a3bf67b..716d56b3 100644 --- a/Makefile +++ b/Makefile @@ -261,12 +261,16 @@ TEST_PACKAGES_BASE = \ unicode/utf8 \ # 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 := \ $(TEST_PACKAGES_BASE) +# archive/zip requires ReadAt, which is not yet supported on windows +ifneq ($(OS),Windows_NT) +TEST_PACKAGES := \ + $(TEST_PACKAGES) \ + archive/zip +endif + # Standard library packages that pass tests on wasi TEST_PACKAGES_WASI = \ $(TEST_PACKAGES_BASE)