From 3137d1d9e3ba8bcc45bbffceabef947494367f8f Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 22 Aug 2020 16:09:06 +0100 Subject: [PATCH] add nor and nand to unit test --- src/soc/fu/logical/test/test_pipe_caller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/fu/logical/test/test_pipe_caller.py b/src/soc/fu/logical/test/test_pipe_caller.py index 9172cb09..3002a4ee 100644 --- a/src/soc/fu/logical/test/test_pipe_caller.py +++ b/src/soc/fu/logical/test/test_pipe_caller.py @@ -62,7 +62,7 @@ def set_alu_inputs(alu, dec2, sim): class LogicalTestCase(TestAccumulatorBase): def case_complement(self): - insns = ["andc", "orc"] + insns = ["andc", "orc", "nand", "nor"] for i in range(40): choice = random.choice(insns) lst = [f"{choice} 3, 1, 2"] -- 2.30.2