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