From d6111364068330637b3cfa3a9081387287473387 Mon Sep 17 00:00:00 2001 From: Crypt Keeper <64215+codefromthecrypt@users.noreply.github.com> Date: Sat, 12 Feb 2022 10:51:10 +0800 Subject: [PATCH] Adds note clarifying status of WASI tests (#226) This adds a link to status we didn't have (thanks to @mbovel) Signed-off-by: Adrian Cole Signed-off-by: r8d8 --- tests/README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tests/README.md b/tests/README.md index a7b3756b8b..8208c8a523 100644 --- a/tests/README.md +++ b/tests/README.md @@ -1,6 +1,9 @@ This directory contains tests which use multiple packages. For example: -- `bench` contains benchmark tests. -- `codec` contains a test and benchmark on text and binary decoders. -- `engine` contains variety of e2e tests, mainly to ensure the consistency in the behavior between engines. -- `spectest` contains end-to-end tests with the [WebAssembly specification tests](https://github.com/WebAssembly/spec/tree/wg-1.0/test/core). +* `bench` contains benchmark tests. +* `codec` contains a test and benchmark on text and binary decoders. +* `engine` contains variety of e2e tests, mainly to ensure the consistency in the behavior between engines. +* `spectest` contains end-to-end tests with the [WebAssembly specification tests](https://github.com/WebAssembly/spec/tree/wg-1.0/test/core). + +*Note*: this doesn't contain WASI tests, as there's not yet an [official testsuite](https://github.com/WebAssembly/WASI/issues/9). +Meanwhile, WASI functions are unit tested including via Text Format imports [here](../wasi/wasi_test.go)