Makefile: exclude archive/zip from TEST_PACKAGES on windows until ReadAt supported
Этот коммит содержится в:
родитель
8eedd2b04b
коммит
7914a729a5
1 изменённых файлов: 8 добавлений и 4 удалений
12
Makefile
12
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)
|
||||
|
|
Загрузка…
Создание таблицы
Сослаться в новой задаче