Skip to content

Commit a7e26cd

Browse files
committed
Update the test generate config to validate newly added ram1 configuration
1 parent 764fe46 commit a7e26cd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/build/test_generate_config.py

+4
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949
"trustzone": False,
5050
"mbed_ram_start": "0",
5151
"mbed_ram_size": "0",
52+
"mbed_ram1_start": "0",
53+
"mbed_ram1_size": "0",
5254
"mbed_rom_start": "0",
5355
"mbed_rom_size": "0",
5456
}
@@ -297,6 +299,8 @@ def test_overrides_target_config_param_from_app(matching_target_and_filter, prog
297299
("target.mbed_rom_size", "1010", "MBED_ROM_SIZE=0x3f2"),
298300
("target.mbed_ram_start", "99", "MBED_RAM_START=0x63"),
299301
("target.mbed_ram_size", "1010", "MBED_RAM_SIZE=0x3f2"),
302+
("target.mbed_ram1_start", "99", "MBED_RAM_START=0x63"),
303+
("target.mbed_ram1_size", "1010", "MBED_RAM_SIZE=0x3f2"),
300304
],
301305
)
302306
def test_overrides_target_non_config_params_from_app(

0 commit comments

Comments
 (0)