diff options
author | Alon Zakai <azakai@google.com> | 2023-01-13 10:06:56 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 18:06:56 +0000 |
commit | 26d3eaada5e8f386b4cfff64461792824c9ff596 (patch) | |
tree | 8971ac7c81d11dfa52e6b0a3b58a2b86a5d2cd4b /test/lit/help/wasm2js.test | |
parent | 589b3fde7511d53f2be251b5d741e422cde39ec6 (diff) | |
download | binaryen-26d3eaada5e8f386b4cfff64461792824c9ff596.tar.gz binaryen-26d3eaada5e8f386b4cfff64461792824c9ff596.tar.bz2 binaryen-26d3eaada5e8f386b4cfff64461792824c9ff596.zip |
Move closed world flag to tool options (#5428)
This allows tools like wasm-reduce to be told to operate in closed-world mode. That
lets them validate in the more strict way of that mode.
Diffstat (limited to 'test/lit/help/wasm2js.test')
-rw-r--r-- | test/lit/help/wasm2js.test | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/lit/help/wasm2js.test b/test/lit/help/wasm2js.test index ab56ff4e8..e023c2af5 100644 --- a/test/lit/help/wasm2js.test +++ b/test/lit/help/wasm2js.test @@ -523,15 +523,6 @@ ;; CHECK-NEXT: corner cases of NaNs and ;; CHECK-NEXT: rounding ;; CHECK-NEXT: -;; CHECK-NEXT: --closed-world,-cw Assume code outside of the -;; CHECK-NEXT: module does not inspect or -;; CHECK-NEXT: interact with GC and function -;; CHECK-NEXT: references, even if they are -;; CHECK-NEXT: passed out. The outside may hold -;; CHECK-NEXT: on to them and pass them back -;; CHECK-NEXT: in, but not inspect their -;; CHECK-NEXT: contents or call them. -;; CHECK-NEXT: ;; CHECK-NEXT: --zero-filled-memory,-uim Assume that an imported memory ;; CHECK-NEXT: will be zero-initialized ;; CHECK-NEXT: @@ -646,6 +637,15 @@ ;; CHECK-NEXT: be parsed using the isorecursive ;; CHECK-NEXT: hybrid type system. ;; CHECK-NEXT: +;; CHECK-NEXT: --closed-world,-cw Assume code outside of the +;; CHECK-NEXT: module does not inspect or +;; CHECK-NEXT: interact with GC and function +;; CHECK-NEXT: references, even if they are +;; CHECK-NEXT: passed out. The outside may hold +;; CHECK-NEXT: on to them and pass them back +;; CHECK-NEXT: in, but not inspect their +;; CHECK-NEXT: contents or call them. +;; CHECK-NEXT: ;; CHECK-NEXT: ;; CHECK-NEXT: General options: ;; CHECK-NEXT: ---------------- |