From d700ab36a6df9be897c40ad5d4b698631376b372 Mon Sep 17 00:00:00 2001 From: Cole Poirier Date: Wed, 5 Aug 2020 14:21:19 -0700 Subject: [PATCH] Remove mulli from instrs in test case_all*, add TODO for mulli special test case --- src/soc/fu/mul/test/test_pipe_caller.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/soc/fu/mul/test/test_pipe_caller.py b/src/soc/fu/mul/test/test_pipe_caller.py index 6fee0f6a..18db8e76 100644 --- a/src/soc/fu/mul/test/test_pipe_caller.py +++ b/src/soc/fu/mul/test/test_pipe_caller.py @@ -161,7 +161,7 @@ class MulTestCase(TestAccumulatorBase): self.add_case(Program(lst, bigendian), initial_regs) def case_all(self): - instrs = ["mulli","mulhw", + instrs = [,"mulhw", "mulhw.","mullw", "mullw.","mullwo", "mullwo.","mulhwu", @@ -171,6 +171,8 @@ class MulTestCase(TestAccumulatorBase): "mulhd.","mulhdu", "mulhdu."] +# TODO add special test case for "mulli" + # TODO add test case for these 3 operand cases # ,"maddhd","maddhdu","maddld" @@ -205,7 +207,7 @@ class MulTestCase(TestAccumulatorBase): self.add_case(prog, initial_regs) def case_all_rb_randint(self): - instrs = ["mulli","mulhw", + instrs = ["mulhw", "mulhw.","mullw", "mullw.","mullwo", "mullwo.","mulhwu", -- 2.30.2