From 3ac4b02604004b4955700367e2edafdcf9a287a5 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 20 Feb 2024 10:02:55 -0500 Subject: [PATCH] LibJS: Further increase the free stack limit to 256 KiB 128 KiB seems to not be enough for CI. --- Userland/Libraries/LibJS/Runtime/VM.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Runtime/VM.h b/Userland/Libraries/LibJS/Runtime/VM.h index 1dba6b3530..20666f0050 100644 --- a/Userland/Libraries/LibJS/Runtime/VM.h +++ b/Userland/Libraries/LibJS/Runtime/VM.h @@ -98,7 +98,7 @@ public: { // Address sanitizer (ASAN) used to check for more space but // currently we can't detect the stack size with it enabled. - return m_stack_info.size_free() < 128 * KiB; + return m_stack_info.size_free() < 256 * KiB; } // TODO: Rename this function instead of providing a second argument, now that the global object is no longer passed in.