From aec8cc190478823cb9389daae1daa1969dea1bb1 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Mon, 24 Feb 2020 12:52:57 -0800 Subject: [PATCH] List the bulk-memory tests that don't pass, rather than the ones that do We've crossed the threshold where this is easier :) --- build.rs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/build.rs b/build.rs index 1942deec89..cafdb32f5b 100644 --- a/build.rs +++ b/build.rs @@ -182,13 +182,11 @@ fn ignore(testsuite: &str, testname: &str, strategy: &str) -> bool { ("reference_types", _) => return true, - ("bulk_memory_operations", "table_copy") - | ("bulk_memory_operations", "table_init") - | ("bulk_memory_operations", "elem") - | ("bulk_memory_operations", "memory_copy") - | ("bulk_memory_operations", "memory_fill") - | ("bulk_memory_operations", "linking") => return false, - ("bulk_memory_operations", _) => return true, + // Still working on implementing these. See #928 + ("bulk_memory_operations", "bulk") + | ("bulk_memory_operations", "data") + | ("bulk_memory_operations", "memory_init") + | ("bulk_memory_operations", "imports") => return true, _ => {} },