c85298975711447c0b8095b544e96d00e08ca483
[openpower-isa.git] / src / openpower / decoder / isa / test_caller_svp64_fptrans.py
1 """ svp64 fptrans tests
2 """
3
4 import unittest
5 from openpower.test.runner import TestRunnerBase
6 from openpower.test.fptrans.fptrans_cases import SVP64FPTransCases
7
8 # writing the test_caller invocation this way makes it work with pytest
9
10
11 class TestSVP64FPTrans(TestRunnerBase):
12 def __init__(self, test):
13 assert test == 'test'
14 super().__init__(SVP64FPTransCases().test_data, fp=True)
15
16 def test(self):
17 # dummy function to make unittest try to test this class
18 pass
19
20
21 if __name__ == "__main__":
22 unittest.main()