From a96e33e34cc222736fcc10ae3d3309ff007bd8c3 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Wed, 9 Oct 2024 21:01:17 -0700 Subject: [PATCH] Enable some miscellaneous GC spec tests These weren't caught by our checks that `should_fail` tests do not pass, I think because they only contain modules that should validate, and not any actual assertions. --- tests/wast.rs | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/tests/wast.rs b/tests/wast.rs index 657e19a4a34..7cf6b7eadb6 100644 --- a/tests/wast.rs +++ b/tests/wast.rs @@ -203,15 +203,8 @@ fn should_fail(test: &Path, strategy: Strategy) -> bool { } } } - let unsupported_gc_tests = [ - "binary_gc.wast", - "table_sub.wast", - "type_canon.wast", - "type_equivalence.wast", - "type-rec.wast", - "type-subtyping.wast", - "unreached_valid.wast", - ]; + + let unsupported_gc_tests = ["type-rec.wast", "type-subtyping.wast"]; for part in test.iter() { // Not implemented in Wasmtime yet