From fcacecb160e2a6aa66a34e46f7705a99d975a139 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 5 Jul 2020 13:25:46 +0100 Subject: [PATCH] add SPR test case, commented out for now --- src/soc/simple/test/test_issuer.py | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.30.2