summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/tracelogger/bug1257194.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/tracelogger/bug1257194.js')
-rw-r--r--js/src/jit-test/tests/tracelogger/bug1257194.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/tracelogger/bug1257194.js b/js/src/jit-test/tests/tracelogger/bug1257194.js
new file mode 100644
index 000000000..8b17bef87
--- /dev/null
+++ b/js/src/jit-test/tests/tracelogger/bug1257194.js
@@ -0,0 +1,11 @@
+// |jit-test| allow-oom
+
+if (!('oomAfterAllocations' in this))
+ quit();
+
+var du = new Debugger();
+if (typeof du.drainTraceLogger == "function") {
+ var obj = du.drainTraceLogger();
+ oomAfterAllocations(1);
+ du.drainTraceLogger().length;
+}