From: Luke Kenneth Casson Leighton Date: Sat, 22 Aug 2020 15:10:03 +0000 (+0100) Subject: add eqv to logical unit test X-Git-Tag: semi_working_ecp5~272^2~23 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5739f450386feab92656546b2f2d3a9c103263ef;p=soc.git add eqv to logical unit test --- diff --git a/src/soc/fu/logical/test/test_pipe_caller.py b/src/soc/fu/logical/test/test_pipe_caller.py index 3002a4ee..298f359c 100644 --- a/src/soc/fu/logical/test/test_pipe_caller.py +++ b/src/soc/fu/logical/test/test_pipe_caller.py @@ -72,7 +72,7 @@ class LogicalTestCase(TestAccumulatorBase): self.add_case(Program(lst, bigendian), initial_regs) def case_rand(self): - insns = ["and", "or", "xor"] + insns = ["and", "or", "xor", "eqv"] for i in range(40): choice = random.choice(insns) lst = [f"{choice} 3, 1, 2"]