5d22ca09d82a57c87200aca264d072c67e34bd31
[soc.git] / src / soc / simple / test / test_issuer.py
1 """simple core test, runs instructions from a TestMemory
2
3 related bugs:
4
5 * https://bugs.libre-soc.org/show_bug.cgi?id=363
6 """
7
8 # NOTE: to use cxxsim, export NMIGEN_SIM_MODE=cxxsim from the shell
9 # Also, check out the cxxsim nmigen branch, and latest yosys from git
10
11 import unittest
12 import sys
13
14 # here is the logic which takes test cases and "executes" them.
15 # in this instance (TestRunner) its job is to instantiate both
16 # a Libre-SOC nmigen-based HDL instance and an ISACaller python
17 # simulator. it's also responsible for performing the single
18 # step and comparison.
19 from soc.simple.test.test_runner import TestRunner
20
21 # test with ALU data and Logical data
22 from openpower.test.alu.alu_cases import ALUTestCase
23 from openpower.test.general.overlap_hazards import HazardTestCase
24 from openpower.test.div.div_cases import DivTestCases
25 from openpower.test.mul.mul_cases import MulTestCases2Arg
26 from openpower.test.logical.logical_cases import LogicalTestCase
27 from openpower.test.shift_rot.shift_rot_cases import ShiftRotTestCase
28 from openpower.test.shift_rot.shift_rot_cases2 import ShiftRotTestCase2
29 from openpower.test.cr.cr_cases import CRTestCase
30 from openpower.test.branch.branch_cases import BranchTestCase
31 from soc.fu.spr.test.test_pipe_caller import SPRTestCase
32 from openpower.test.ldst.ldst_cases import LDSTTestCase
33 from openpower.simulator.test_sim import (GeneralTestCases, AttnTestCase)
34 from openpower.simulator.test_helloworld_sim import HelloTestCases
35
36
37 if __name__ == "__main__":
38 svp64 = True
39 if len(sys.argv) > 1 and sys.argv[1] == 'nosvp64':
40 svp64 = False
41 del sys.argv[1]
42
43 # detect overlap case
44 allow_overlap = False
45 if len(sys.argv) >= 2 and sys.argv[1] == '--allow-overlap':
46 allow_overlap = True
47 del sys.argv[1]
48
49 # allow list of testing to be selected by command-line
50 testing = []
51 for i in reversed(range(1, len(sys.argv))):
52 if not sys.argv[i].startswith('-'):
53 testing.append(sys.argv.pop(i))
54
55 if not testing:
56 testing = ['general', 'ldst', 'cr', 'shiftrot', 'shiftrot2',
57 'logical', 'alu',
58 'branch', 'div', 'mul', 'hazard']
59
60 print("SVP64 test mode enabled", svp64, "overlap",
61 allow_overlap, "testing", testing)
62
63 unittest.main(exit=False)
64 suite = unittest.TestSuite()
65
66 # dictionary of data for tests
67 tests = {'hello': HelloTestCases.test_data,
68 'div': DivTestCases().test_data,
69 'mul': MulTestCases2Arg().test_data,
70 'attn': AttnTestCase.test_data,
71 'general': GeneralTestCases.test_data,
72 'ldst': LDSTTestCase().test_data,
73 'cr': CRTestCase().test_data,
74 'shiftrot': ShiftRotTestCase().test_data,
75 'shiftrot2': ShiftRotTestCase2().test_data,
76 'logical': LogicalTestCase().test_data,
77 'hazard': HazardTestCase().test_data,
78 'alu': ALUTestCase().test_data,
79 'branch': BranchTestCase().test_data,
80 'spr': SPRTestCase().test_data
81 }
82
83 # walk through all tests, those requested get added
84 for tname, data in tests.items():
85 if tname in testing:
86 suite.addTest(TestRunner(data, svp64=svp64,
87 allow_overlap=allow_overlap))
88
89 runner = unittest.TextTestRunner()
90 runner.run(suite)