summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/profiler/bug1164448.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/profiler/bug1164448.js')
-rw-r--r--js/src/jit-test/tests/profiler/bug1164448.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/profiler/bug1164448.js b/js/src/jit-test/tests/profiler/bug1164448.js
new file mode 100644
index 0000000000..23147742f1
--- /dev/null
+++ b/js/src/jit-test/tests/profiler/bug1164448.js
@@ -0,0 +1,26 @@
+// |jit-test| error: TypeError
+
+print = function(s) { return s.toString(); }
+var gTestcases = new Array();
+function TestCase(n, d, e, a) {
+ return gTestcases[gTc++] = this;
+}
+ dump = print;
+ for ( gTc=0; gTc < gTestcases.length; gTc++ ) {}
+function jsTestDriverEnd() {
+ for (var i = 0; i < gTestcases.length; i++)
+ gTestcases[i].dump();
+}
+TestCase();
+var g = newGlobal();
+g.parent = this;
+g.eval("new Debugger(parent).onExceptionUnwind = function () {};");
+enableGeckoProfiling();
+if (getBuildConfiguration()["arm-simulator"])
+ enableSingleStepProfiling(1);
+loadFile("jsTestDriverEnd();");
+loadFile("jsTestDriverEnd();");
+jsTestDriverEnd();
+function loadFile(lfVarx) {
+ try { evaluate(lfVarx); } catch (lfVare) {}
+}