blob: c2de49fd4908c6dbd3e473a35b62d313fc7919e2 (
plain)
1
2
3
4
5
6
7
8
|
// |jit-test| skip-if: !('oomTest' in this)
// Adapted from randomly chosen test: js/src/jit-test/tests/profiler/bug1231925.js
"use strict";
enableGeckoProfiling();
oomTest(function() {
eval("(function() {})()");
});
|