test: rename test_liteeth_gen to test_gen and call gen.py instead of liteeth_gen
This commit is contained in:
parent
6cce8c3c34
commit
10a911088c
|
@ -6,10 +6,10 @@ import os
|
||||||
|
|
||||||
root_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..")
|
root_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)), "..")
|
||||||
|
|
||||||
class TestLiteDRAMGen(unittest.TestCase):
|
class TestGen(unittest.TestCase):
|
||||||
def test(self):
|
def test(self):
|
||||||
for phy in ["mii", "gmii", "rgmii"]:
|
for phy in ["mii", "gmii", "rgmii"]:
|
||||||
for core in ["wishbone", "udp"]:
|
for core in ["wishbone", "udp"]:
|
||||||
os.system("rm -rf {}/build".format(root_dir))
|
os.system("rm -rf {}/build".format(root_dir))
|
||||||
os.system("liteeth_gen --phy={} --core={}".format(phy, core))
|
os.system("python3 {}/liteeth/gen.py --phy={} --core={}".format(root_dir, phy, core))
|
||||||
self.assertEqual(os.path.isfile("{}/build/gateware/liteeth_core.v".format(root_dir)), True)
|
self.assertEqual(os.path.isfile("{}/build/gateware/liteeth_core.v".format(root_dir)), True)
|
Loading…
Reference in New Issue