From 58d0499e55c606dc3c332f2ebeac71fdc2d39024 Mon Sep 17 00:00:00 2001 From: Dan Kegel Date: Sun, 6 Feb 2022 10:18:59 -0800 Subject: [PATCH] Makefile: add io/fs to tinygo-test where supported Depends on t.TempDir(), which is why this wasn't enabled earlier. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2db2ac71..31aeeb34 100644 --- a/Makefile +++ b/Makefile @@ -260,10 +260,12 @@ TEST_PACKAGES := \ $(TEST_PACKAGES_BASE) # 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 ifneq ($(OS),Windows_NT) TEST_PACKAGES := \ $(TEST_PACKAGES) \ - archive/zip + archive/zip \ + io/fs endif # Standard library packages that pass tests on wasi