diff options
Diffstat (limited to 'test/lit/validation')
-rw-r--r-- | test/lit/validation/closed-world-interface.wast | 2 | ||||
-rw-r--r-- | test/lit/validation/shared-struct.wast | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/lit/validation/closed-world-interface.wast b/test/lit/validation/closed-world-interface.wast index 19b0faa10..b4fe965cf 100644 --- a/test/lit/validation/closed-world-interface.wast +++ b/test/lit/validation/closed-world-interface.wast @@ -13,7 +13,7 @@ ;; This is referred to by the type of a function export, but is still not allowed. ;; CHECK: publicly exposed type disallowed with a closed world: $struct, on -;; CHECK-NEXT: (struct ) +;; CHECK-NEXT: (struct) (module (type $struct (struct)) diff --git a/test/lit/validation/shared-struct.wast b/test/lit/validation/shared-struct.wast index ee25b6f24..1e96dc9f5 100644 --- a/test/lit/validation/shared-struct.wast +++ b/test/lit/validation/shared-struct.wast @@ -4,7 +4,7 @@ ;; RUN: wasm-opt %s --enable-reference-types --enable-gc --enable-shared-everything -o - -S | filecheck %s --check-prefix SHARED ;; NO-SHARED: global type requires additional features [--enable-reference-types --enable-gc --enable-shared-everything] -;; SHARED: (type $t (shared (struct ))) +;; SHARED: (type $t (shared (struct))) (module (type $t (shared (struct))) |