mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-13 23:43:40 +00:00
Fix tinygo-test with Go 1.19
One of the internal packages used for tests was moved in that version.
This commit is contained in:
committed by
Ron Evans
parent
c2f437e0b7
commit
df52b500bf
@@ -280,7 +280,6 @@ TEST_PACKAGES_FAST = \
|
|||||||
container/list \
|
container/list \
|
||||||
container/ring \
|
container/ring \
|
||||||
crypto/des \
|
crypto/des \
|
||||||
crypto/elliptic/internal/fiat \
|
|
||||||
crypto/internal/subtle \
|
crypto/internal/subtle \
|
||||||
crypto/md5 \
|
crypto/md5 \
|
||||||
crypto/rc4 \
|
crypto/rc4 \
|
||||||
@@ -317,6 +316,14 @@ TEST_PACKAGES_FAST = \
|
|||||||
unicode \
|
unicode \
|
||||||
unicode/utf16 \
|
unicode/utf16 \
|
||||||
unicode/utf8 \
|
unicode/utf8 \
|
||||||
|
$(nil)
|
||||||
|
|
||||||
|
# Assume this will go away before Go2, so only check minor version.
|
||||||
|
ifeq ($(filter $(shell $(GO) env GOVERSION | cut -f 2 -d.), 16 17 18), )
|
||||||
|
TEST_PACKAGES_FAST += crypto/internal/nistec/fiat
|
||||||
|
else
|
||||||
|
TEST_PACKAGES_FAST += crypto/elliptic/internal/fiat
|
||||||
|
endif
|
||||||
|
|
||||||
# archive/zip requires os.ReadAt, which is not yet supported on windows
|
# archive/zip requires os.ReadAt, which is not yet supported on windows
|
||||||
# debug/plan9obj requires os.ReadAt, which is not yet supported on windows
|
# debug/plan9obj requires os.ReadAt, which is not yet supported on windows
|
||||||
|
|||||||
Reference in New Issue
Block a user