test/test_cpu: Enable test_mor1kx.

This commit is contained in:
Florent Kermarrec 2022-06-03 15:44:35 +02:00
parent f0ca433fe1
commit 76f9c60767
2 changed files with 3 additions and 2 deletions

View File

@ -41,4 +41,5 @@ jobs:
run: |
export PATH=/usr/local/riscv/bin:$PATH
export PATH=/usr/local/openrisc/bin:$PATH
python3 -m unittest test.test_cpu.TestCPU.test_mor1kx
python3 -m unittest test.test_cpu.TestCPU.test_marocchino

View File

@ -60,8 +60,8 @@ class TestCPU(unittest.TestCase):
# self.assertTrue(self.boot_test("cva6"))
# OpenRISC CPUs.
#def test_mor1kx(self):
# self.assertTrue(self.boot_test("mor1kx"))
def test_mor1kx(self):
self.assertTrue(self.boot_test("mor1kx"))
def test_marocchino(self):
self.assertTrue(self.boot_test("marocchino"))