diff options
author | Dan Kegel <[email protected]> | 2022-01-19 08:55:41 -0800 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-01-20 11:14:41 +0100 |
commit | 7914a729a5dbf25da6061f00b027fd7da66468c5 (patch) | |
tree | 48b0d454c4576f53d084c5e0d301c5b1e2ccde98 /Makefile | |
parent | 8eedd2b04bb2c142f4a90e45ca5d01eb6a697ab7 (diff) | |
download | tinygo-7914a729a5dbf25da6061f00b027fd7da66468c5.tar.gz tinygo-7914a729a5dbf25da6061f00b027fd7da66468c5.zip |
Makefile: exclude archive/zip from TEST_PACKAGES on windows until ReadAt supported
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -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) |