summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/xdr/module-oom.js
blob: 46e6b67525188486737ed838bb433246d01eacf6 (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
// |jit-test| skip-if: !('oomTest' in this)

// OOM tests for xdr module parsing.

const sa =
`export default 20;
 export let a = 22;
 export function f(x, y) { return x + y }
`;

const sb =
`import x from "a";
 import { a as y } from "a";
 import * as ns from "a";
 ns.f(x, y);
`;

oomTest(() => {
    let og = parseModule(sa);
    let bc = codeModule(og);
    let a = registerModule('a', decodeModule(bc));

    og = parseModule(sb);
    bc = codeModule(og);
    let b = registerModule('b', decodeModule(bc));
});