From: Luke Kenneth Casson Leighton Date: Sun, 5 Jul 2020 12:25:46 +0000 (+0100) Subject: add SPR test case, commented out for now X-Git-Tag: div_pipeline~162^2~64 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fcacecb160e2a6aa66a34e46f7705a99d975a139;p=soc.git add SPR test case, commented out for now --- diff --git a/src/soc/simple/test/test_issuer.py b/src/soc/simple/test/test_issuer.py index 028872ac..e9d72842 100644 --- a/src/soc/simple/test/test_issuer.py +++ b/src/soc/simple/test/test_issuer.py @@ -30,6 +30,7 @@ from soc.fu.logical.test.test_pipe_caller import LogicalTestCase from soc.fu.shift_rot.test.test_pipe_caller import ShiftRotTestCase from soc.fu.cr.test.test_pipe_caller import CRTestCase from soc.fu.branch.test.test_pipe_caller import BranchTestCase +from soc.fu.spr.test.test_pipe_caller import SPRTestCase from soc.fu.ldst.test.test_pipe_caller import LDSTTestCase from soc.simulator.test_sim import GeneralTestCases @@ -160,6 +161,7 @@ if __name__ == "__main__": suite.addTest(TestRunner(LogicalTestCase.test_data)) suite.addTest(TestRunner(ALUTestCase.test_data)) suite.addTest(TestRunner(BranchTestCase.test_data)) + #suite.addTest(TestRunner(SPRTestCase.test_data)) runner = unittest.TextTestRunner() runner.run(suite)