File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ TEST_PACKAGES_SLOW = \
221
221
222
222
# Standard library packages that pass tests quickly on darwin, linux, wasi, and windows
223
223
TEST_PACKAGES_FAST = \
224
- compress/lzw \
225
224
compress/zlib \
226
225
container/heap \
227
226
container/list \
@@ -269,18 +268,23 @@ TEST_PACKAGES_FAST = \
269
268
# io/fs requires os.ReadDir, which is not yet supported on windows or wasi
270
269
# testing/fstest requires os.ReadDir, which is not yet supported on windows or wasi
271
270
# compress/flate fails windows go 1.18, https://github.com/tinygo-org/tinygo/issues/2762
271
+ # compress/lzw fails windows go 1.18 wasi, https://github.com/tinygo-org/tinygo/issues/2762
272
272
273
273
# Additional standard library packages that pass tests on individual platforms
274
274
TEST_PACKAGES_LINUX := \
275
275
archive/zip \
276
276
compress/flate \
277
+ compress/lzw \
277
278
debug/dwarf \
278
279
debug/plan9obj \
279
280
io/fs \
280
281
testing/fstest
281
282
282
283
TEST_PACKAGES_DARWIN := $(TEST_PACKAGES_LINUX )
283
284
285
+ TEST_PACKAGES_WINDOWS := \
286
+ compress/lzw
287
+
284
288
# Report platforms on which each standard library package is known to pass tests
285
289
jointmp := $(shell echo /tmp/join.$$$$)
286
290
report-stdlib-tests-pass :
@@ -299,7 +303,7 @@ ifeq ($(shell uname),Linux)
299
303
TEST_PACKAGES_HOST := $(TEST_PACKAGES_FAST ) $(TEST_PACKAGES_LINUX )
300
304
endif
301
305
ifeq ($(OS ) ,Windows_NT)
302
- TEST_PACKAGES_HOST := $(TEST_PACKAGES_FAST )
306
+ TEST_PACKAGES_HOST := $(TEST_PACKAGES_FAST ) $( TEST_PACKAGES_WINDOWS )
303
307
endif
304
308
305
309
# Test known-working standard library packages.
You can’t perform that action at this time.
0 commit comments