From: Luke Kenneth Casson Leighton Date: Sun, 7 Nov 2021 13:40:33 +0000 (+0000) Subject: for some reason mul test cases had not been added to test_issuer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=678167a82e7a670c1c3539ba5e30e031aa9ed70a;p=soc.git for some reason mul test cases had not been added to test_issuer --- diff --git a/src/soc/simple/test/test_issuer.py b/src/soc/simple/test/test_issuer.py index c01e8c68..102c397f 100644 --- a/src/soc/simple/test/test_issuer.py +++ b/src/soc/simple/test/test_issuer.py @@ -21,6 +21,7 @@ from soc.simple.test.test_runner import TestRunner # test with ALU data and Logical data from openpower.test.alu.alu_cases import ALUTestCase from openpower.test.div.div_cases import DivTestCases +from openpower.test.mul.mul_cases import MulTestCases2Arg from openpower.test.logical.logical_cases import LogicalTestCase from openpower.test.shift_rot.shift_rot_cases import ShiftRotTestCase from openpower.test.shift_rot.shift_rot_cases2 import ShiftRotTestCase2 @@ -46,7 +47,7 @@ if __name__ == "__main__": if not testing: testing = ['general', 'ldst', 'cr', 'shiftrot', 'shiftrot2', 'logical', 'alu', - 'branch', 'div'] + 'branch', 'div', 'mul'] print ("SVP64 test mode enabled", svp64, testing) @@ -56,6 +57,7 @@ if __name__ == "__main__": # dictionary of data for tests tests = {'hello': HelloTestCases.test_data, 'div': DivTestCases().test_data, + 'mul': MulTestCases2Arg().test_data, 'attn': AttnTestCase.test_data, 'general': GeneralTestCases.test_data, 'ldst': LDSTTestCase().test_data,