From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- js/src/jit-test/tests/self-hosting/oom-toplevel.js | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 js/src/jit-test/tests/self-hosting/oom-toplevel.js (limited to 'js/src/jit-test/tests/self-hosting/oom-toplevel.js') diff --git a/js/src/jit-test/tests/self-hosting/oom-toplevel.js b/js/src/jit-test/tests/self-hosting/oom-toplevel.js new file mode 100644 index 0000000000..60f2be4e1e --- /dev/null +++ b/js/src/jit-test/tests/self-hosting/oom-toplevel.js @@ -0,0 +1,25 @@ +// |jit-test| skip-if: !('oomAtAllocation' in this) + +function code(n) { + return ` + // Trigger top-level execution with an OOM in the middle. + oomAtAllocation(${n}); + try { getSelfHostedValue("numberFormatCache") } catch (e) { } + resetOOMFailure(); + + // Read current value of "dateTimeFormatCache". + var initVal = getSelfHostedValue("dateTimeFormatCache"); + assertEq(typeof initVal, "object"); + + // Retrigger top-level execution by reading a later value in the file. + // Then compare that "dateTimeFormatCache" was not clobbered. + getSelfHostedValue("collatorCache"); + assertEq(initVal, getSelfHostedValue("dateTimeFormatCache")); + `; +} + +// We cannot use `oomTest` here because of divergence issues from things like +// `RegisterShapeCache` absorbing OOMs. +for (var i = 1; i < 300; ++i) { + evaluate(code(i), { global: newGlobal() }); +} -- cgit v1.2.3