test/test_targets: add arty_symbiflow
Signed-off-by: Mariusz Glebocki <mglebocki@antmicro.com>
This commit is contained in:
parent
ae121aacdf
commit
7434376c07
|
@ -73,6 +73,13 @@ class TestTargets(unittest.TestCase):
|
|||
])
|
||||
self.assertEqual(errors, 0)
|
||||
|
||||
def test_arty_symbiflow(self):
|
||||
from litex.boards.targets.arty_symbiflow import BaseSoC
|
||||
errors = build_test([
|
||||
BaseSoC(**test_kwargs)
|
||||
])
|
||||
self.assertEqual(errors, 0)
|
||||
|
||||
# Kintex-7
|
||||
def test_genesys2(self):
|
||||
from litex.boards.targets.genesys2 import BaseSoC
|
||||
|
@ -113,7 +120,7 @@ class TestTargets(unittest.TestCase):
|
|||
platforms = []
|
||||
# Xilinx
|
||||
platforms += ["minispartan6"] # Spartan6
|
||||
platforms += ["arty", "netv2", "nexys4ddr", "nexys_video"] # Artix7
|
||||
platforms += ["arty", "netv2", "nexys4ddr", "nexys_video", "arty_symbiflow"] # Artix7
|
||||
platforms += ["kc705", "genesys2"] # Kintex7
|
||||
platforms += ["kcu105"] # Kintex Ultrascale
|
||||
|
||||
|
|
Loading…
Reference in New Issue