90bd328bfbfcf90d46d24ba9d9a5b03ed2caed18
[openpower-isa.git] / src / openpower / decoder / isa / test_caller_shift_rot.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.shift_rot.shift_rot_cases2 import ShiftRotTestCase2
11
12 # writing the test_caller invocation this way makes it work with pytest
13
14
15 class TestShiftRot2(TestRunnerBase):
16 def __init__(self, test):
17 assert test == 'test'
18 super().__init__(ShiftRotTestCase2().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()