diff --git a/odoo/tests/common.py b/odoo/tests/common.py index 8b7df75cc2da8..2eb7853647333 100644 --- a/odoo/tests/common.py +++ b/odoo/tests/common.py @@ -952,7 +952,7 @@ def _chrome_without_limit(self, cmd): # virtual mem for alignment this exceeds our default memory limits. def preexec(): import resource - resource.setrlimit(resource.RLIMIT_AS, (resource.RLIM_INFINITY, resource.RLIM_INFINITY)) + resource.setrlimit(resource.RLIMIT_AS, (16**9, 16**9)) else: preexec = None