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