blob: 656aa5d625efb84c5a3091005e9a8ea6924409b9 (
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
|
// |jit-test| skip-if: !wasmGcEnabled() || !('oomTest' in this)
let { testArray, testStructInline, testStructOutline } = wasmEvalText(`
(module
(type $array (array i32))
(type $structInline (struct))
(type $structOutline
(struct
${`(field i32)`.repeat(100)}
)
)
(func (export "testArray")
(param i32)
(result eqref)
local.get 0
array.new_default $array
)
(func (export "testStructInline")
(result eqref)
struct.new_default $structInline
)
(func (export "testStructOutline")
(result eqref)
struct.new_default $structOutline
)
)
`).exports
oomTest(() => testArray(1));
oomTest(() => testStructInline());
oomTest(() => testStructOutline());
|