From: Jacob Lifshay Date: Mon, 11 Sep 2023 21:32:10 +0000 (-0700) Subject: skip madd* tests since they're not implemented X-Git-Url: https://git.libre-soc.org/?p=soc.git;a=commitdiff_plain;h=6b5e9764ed7d17a09e6346af502173c15ca53c04 skip madd* tests since they're not implemented --- diff --git a/src/soc/fu/mul/test/test_pipe_caller_long.py b/src/soc/fu/mul/test/test_pipe_caller_long.py index c711a651..afa4e007 100644 --- a/src/soc/fu/mul/test/test_pipe_caller_long.py +++ b/src/soc/fu/mul/test/test_pipe_caller_long.py @@ -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)