From ac804216066b3a096f8a9846c83d309e2a6a796f Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 1 Jun 2020 19:05:38 +0100 Subject: [PATCH] comment out rlwinm. for now --- src/soc/fu/shift_rot/test/test_pipe_caller.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/soc/fu/shift_rot/test/test_pipe_caller.py b/src/soc/fu/shift_rot/test/test_pipe_caller.py index 2a4ad4b7..f7bd6fd7 100644 --- a/src/soc/fu/shift_rot/test/test_pipe_caller.py +++ b/src/soc/fu/shift_rot/test/test_pipe_caller.py @@ -130,7 +130,8 @@ class ShiftRotTestCase(FHDLTestCase): me = random.randint(0,31) sh = random.randint(0,31) lst = [f"rlwinm 3, 1, {mb}, {me}, {sh}", - f"rlwinm. 3, 1, {mb}, {me}, {sh}"] + #f"rlwinm. 3, 1, {mb}, {me}, {sh}" + ] initial_regs = [0] * 32 initial_regs[1] = random.randint(0, (1<<64)-1) self.run_tst_program(Program(lst), initial_regs) -- 2.30.2