summaryrefslogtreecommitdiff
path: root/test/lit/basic/export-import.wast
blob: 717681138b4fe39778ea1927ec6967bf20b98ac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.

;; RUN: wasm-opt %s -all -o %t.text.wast -g -S
;; RUN: wasm-as %s -all -g -o %t.wasm
;; RUN: wasm-dis %t.wasm -all -o %t.bin.wast
;; RUN: wasm-as %s -all -o %t.nodebug.wasm
;; RUN: wasm-dis %t.nodebug.wasm -all -o %t.bin.nodebug.wast
;; RUN: cat %t.text.wast | filecheck %s --check-prefix=CHECK-TEXT
;; RUN: cat %t.bin.wast | filecheck %s --check-prefix=CHECK-BIN
;; RUN: cat %t.bin.nodebug.wast | filecheck %s --check-prefix=CHECK-BIN-NODEBUG

(module
 ;; CHECK-TEXT:      (type $v (func))
 ;; CHECK-BIN:      (type $v (func))
 (type $v (func))
 ;; CHECK-TEXT:      (import "env" "test2" (global $test2 i32))

 ;; CHECK-TEXT:      (import "env" "test1" (func $test1 (type $v)))
 ;; CHECK-BIN:      (import "env" "test2" (global $test2 i32))

 ;; CHECK-BIN:      (import "env" "test1" (func $test1 (type $v)))
 (import "env" "test1" (func $test1))
 (import "env" "test2" (global $test2 i32))
 ;; CHECK-TEXT:      (export "test1" (func $test1))
 ;; CHECK-BIN:      (export "test1" (func $test1))
 (export "test1" (func $test1))
 ;; CHECK-TEXT:      (export "test2" (global $test2))
 ;; CHECK-BIN:      (export "test2" (global $test2))
 (export "test2" (global $test2))
)
;; CHECK-BIN-NODEBUG:      (type $0 (func))

;; CHECK-BIN-NODEBUG:      (import "env" "test2" (global $gimport$0 i32))

;; CHECK-BIN-NODEBUG:      (import "env" "test1" (func $fimport$0 (type $0)))

;; CHECK-BIN-NODEBUG:      (export "test1" (func $fimport$0))

;; CHECK-BIN-NODEBUG:      (export "test2" (global $gimport$0))