pysvp64db: fix traversal
[openpower-isa.git] / src / openpower / decoder / isa / test_caller_alu.py
1 """ Decoder tests
2
3 related bugs:
4
5 *
6 """
7
8 import unittest
9
10 from openpower.test.alu.alu_cases import ALUTestCase
11 from openpower.test.runner import TestRunnerBase
12
13 # writing the test_caller invocation this way makes it work with pytest
14
15
16 class TestALU(TestRunnerBase):
17 def __init__(self, test):
18 assert test == 'test'
19 super().__init__(ALUTestCase().test_data)
20
21 def test(self):
22 # dummy function to make unittest try to test this class
23 pass
24
25
26 if __name__ == "__main__":
27 unittest.main()