From: Jacob Lifshay Date: Mon, 11 Sep 2023 21:30:18 +0000 (-0700) Subject: mark madd* as skipped in soc.git X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b1d77fffae1420cce95cfb6485eeab3b14647bea;p=openpower-isa.git mark madd* as skipped in soc.git --- diff --git a/src/openpower/test/mul/long_mul_cases.py b/src/openpower/test/mul/long_mul_cases.py index 3247ccc8..bdc17bc9 100644 --- a/src/openpower/test/mul/long_mul_cases.py +++ b/src/openpower/test/mul/long_mul_cases.py @@ -1,7 +1,7 @@ import unittest from openpower.simulator.program import Program from openpower.endian import bigendian -from openpower.test.common import TestAccumulatorBase +from openpower.test.common import TestAccumulatorBase, skip_case_if_flag import random @@ -191,10 +191,11 @@ MUL_3_ARG_TEST_VALUES = [ class MulTestCases3Arg(TestAccumulatorBase): - def __init__(self, subtest_index): + def __init__(self, subtest_index, *args, **kwargs): self.subtest_index = subtest_index - super().__init__() + super().__init__(*args, **kwargs) + @skip_case_if_flag('soc') def case_all(self): instrs = ["maddhd", "maddhdu", "maddld"]