mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
test/test_targets: limit max_sdram_size to 1GB
This commit is contained in:
parent
008a089471
commit
7b92a17c6e
1 changed files with 4 additions and 1 deletions
|
@ -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 a new issue