Browse Source

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.
pull/2558/head
Dan Kegel 3 years ago
committed by Ron Evans
parent
commit
8eedd2b04b
  1. 3
      Makefile

3
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

Loading…
Cancel
Save