blob: 84979c046c269554dc727d5e5c3c2c34aa264f28 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// |jit-test| skip-if: helperThreadCount() === 0 || !('oomTest' in this)
for (let j = 0; j < 50; j++) {
if (j === 1)
oomTest(function() {});
evalInWorker(`
for (let i = 0; i < 30; i++)
relazifyFunctions();
`);
}
|