test/test_targets: limit max_sdram_size to 1GB
This commit is contained in:
parent
008a089471
commit
7b92a17c6e
|
@ -24,7 +24,10 @@ def build_test(socs):
|
|||
os.system("rm -rf build")
|
||||
return errors
|
||||
|
||||
test_kwargs = {"integrated_rom_size": 0x8000}
|
||||
test_kwargs = {
|
||||
"integrated_rom_size": 0x8000,
|
||||
"max_sdram_size": 0x4000000
|
||||
}
|
||||
|
||||
class TestTargets(unittest.TestCase):
|
||||
# Altera boards
|
||||
|
|
Loading…
Reference in New Issue