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