blob: 0518a03a6a903c1dd93fa5de89f4075ee24efc2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;; Test that --verbose mode correctly prints the kept and split funcs
;; RUN: wasm-split %s --keep-funcs=foo,bar --verbose \
;; RUN: -o1 %t1.wasm -o2 %t2.wasm | filecheck %s
;; CHECK: Keeping functions: bar, foo{{$}}
;; CHECK: Splitting out functions: baz, quux{{$}}
(module
(func $foo)
(func $bar)
(func $baz)
(func $quux)
)
|