skip madd* tests since they're not implemented
authorJacob Lifshay <programmerjake@gmail.com>
Mon, 11 Sep 2023 21:32:10 +0000 (14:32 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Mon, 11 Sep 2023 21:32:10 +0000 (14:32 -0700)
src/soc/fu/mul/test/test_pipe_caller_long.py

index c711a651786b4602a1466b70d1f3a050a438fae4..afa4e00701b368cc6f8a1b4139d3ccb4e4923732 100644 (file)
@@ -7,11 +7,11 @@ from openpower.test.mul.long_mul_cases import (MulTestCases2Arg,
 
 class TestPipeLong(MulTestHelper):
     def test_mul_pipe_2_arg(self):
-        self.run_all(MulTestCases2Arg().test_data, "mul_pipe_caller_long_2_arg",
-                     has_third_input=False)
+        self.run_all(MulTestCases2Arg({'soc'}).test_data,
+                     "mul_pipe_caller_long_2_arg", has_third_input=False)
 
     def helper_3_arg(self, subtest_index):
-        self.run_all(MulTestCases3Arg(subtest_index).test_data,
+        self.run_all(MulTestCases3Arg(subtest_index, {'soc'}).test_data,
                      f"mul_pipe_caller_long_3_arg_{subtest_index}",
                      has_third_input=True)