From 00f620870e8511b3c84b077fb73d9c4fba956958 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Fri, 29 Nov 2024 19:21:19 -0500 Subject: [PATCH] twister: config: increase min_ram to 16k Increase default to 16k, this can be overidden in the test configuration where needed. Signed-off-by: Anas Nashif --- scripts/pylib/twister/twisterlib/config_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pylib/twister/twisterlib/config_parser.py b/scripts/pylib/twister/twisterlib/config_parser.py index c13b8304ead3bd..25f4613d17078a 100644 --- a/scripts/pylib/twister/twisterlib/config_parser.py +++ b/scripts/pylib/twister/twisterlib/config_parser.py @@ -56,7 +56,7 @@ class TwisterConfigParser: "skip": {"type": "bool", "default": False}, "slow": {"type": "bool", "default": False}, "timeout": {"type": "int", "default": 60}, - "min_ram": {"type": "int", "default": 8}, + "min_ram": {"type": "int", "default": 16}, "modules": {"type": "list", "default": []}, "depends_on": {"type": "set"}, "min_flash": {"type": "int", "default": 32},