From 26e84dc5d35f80bd4a25e05ea94f7f3e3bd7a4c6 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 12 Dec 2020 16:37:49 +0000 Subject: [PATCH] skip madd, not implemented --- src/soc/fu/mul/test/test_pipe_caller.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/soc/fu/mul/test/test_pipe_caller.py b/src/soc/fu/mul/test/test_pipe_caller.py index 2fb8265c..36e5faf4 100644 --- a/src/soc/fu/mul/test/test_pipe_caller.py +++ b/src/soc/fu/mul/test/test_pipe_caller.py @@ -2,7 +2,8 @@ import unittest from soc.fu.mul.test.helper import MulTestHelper from soc.simulator.program import Program from soc.config.endian import bigendian -from soc.fu.test.common import (TestAccumulatorBase) +from soc.fu.test.common import TestAccumulatorBase, skip_case + import random @@ -114,6 +115,7 @@ class MulTestCases3Arg(TestAccumulatorBase): # TODO add test case for these 3 operand cases (madd # needs to be implemented) # "maddhd","maddhdu","maddld" + @skip_case("madd not implemented") def case_maddld(self): lst = ["maddld 1, 2, 3, 4"] initial_regs = [0] * 32 -- 2.30.2