From 6c23f27f731a91f3da2f800e6f0a47839e8aaad7 Mon Sep 17 00:00:00 2001 From: Dan Kegel Date: Mon, 21 Feb 2022 10:09:48 -0800 Subject: [PATCH] Makefile: add testing/fstest to tinygo-test where supported --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 31aeeb34..8aeb9fe7 100644 --- a/Makefile +++ b/Makefile @@ -261,11 +261,13 @@ TEST_PACKAGES := \ # archive/zip requires ReadAt, which is not yet supported on windows # io/fs requires os.ReadDir, which is not yet supported on windows or wasi +# testing/fstest requires os.ReadDir, which is not yet supported on windows or wasi ifneq ($(OS),Windows_NT) TEST_PACKAGES := \ $(TEST_PACKAGES) \ archive/zip \ - io/fs + io/fs \ + testing/fstest endif # Standard library packages that pass tests on wasi