test/test_targets: update
This commit is contained in:
parent
a5ed42ec68
commit
5137c2bf88
|
@ -57,6 +57,16 @@ class TestTargets(unittest.TestCase):
|
||||||
|
|
||||||
# lattice boards
|
# lattice boards
|
||||||
|
|
||||||
|
def test_versa_ecp5(self):
|
||||||
|
from litex.boards.targets.versa_ecp5 import BaseSoC
|
||||||
|
errors = build_test([BaseSoC()])
|
||||||
|
self.assertEqual(errors, 0)
|
||||||
|
|
||||||
|
def test_versa_ulx3s(self):
|
||||||
|
from litex.boards.targets.ulx3s import BaseSoC
|
||||||
|
errors = build_test([BaseSoC()])
|
||||||
|
self.assertEqual(errors, 0)
|
||||||
|
|
||||||
# build simple design for all platforms
|
# build simple design for all platforms
|
||||||
def test_simple(self):
|
def test_simple(self):
|
||||||
platforms = [
|
platforms = [
|
||||||
|
@ -76,8 +86,8 @@ class TestTargets(unittest.TestCase):
|
||||||
"papilio_pro",
|
"papilio_pro",
|
||||||
"tinyfpga_b",
|
"tinyfpga_b",
|
||||||
"tinyfpga_bx",
|
"tinyfpga_bx",
|
||||||
"versa",
|
"versa_ecp3",
|
||||||
"versaecp55g"
|
"versa_ecp5"
|
||||||
]
|
]
|
||||||
for p in platforms:
|
for p in platforms:
|
||||||
os.system("litex_simple litex.boards.platforms." + p +
|
os.system("litex_simple litex.boards.platforms." + p +
|
||||||
|
|
Loading…
Reference in New Issue