From 89db91417312abd0a19c28138daca9508310f514 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Mon, 24 Jul 2023 19:50:12 -0700 Subject: [PATCH] add missing test_caller_cr.py --- src/openpower/decoder/isa/test_caller_cr.py | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/openpower/decoder/isa/test_caller_cr.py diff --git a/src/openpower/decoder/isa/test_caller_cr.py b/src/openpower/decoder/isa/test_caller_cr.py new file mode 100644 index 00000000..7c548b2d --- /dev/null +++ b/src/openpower/decoder/isa/test_caller_cr.py @@ -0,0 +1,23 @@ +""" CR tests +""" + +import unittest + +from openpower.test.cr.cr_cases import CRTestCase +from openpower.test.runner import TestRunnerBase + +# writing the test_caller invocation this way makes it work with pytest + + +class TestBigInt(TestRunnerBase): + def __init__(self, test): + assert test == 'test' + super().__init__(CRTestCase().test_data) + + def test(self): + # dummy function to make unittest try to test this class + pass + + +if __name__ == "__main__": + unittest.main() -- 2.30.2