From: Luke Kenneth Casson Leighton Date: Mon, 1 Jun 2020 18:05:38 +0000 (+0100) Subject: comment out rlwinm. for now X-Git-Tag: div_pipeline~677 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ac804216066b3a096f8a9846c83d309e2a6a796f;p=soc.git comment out rlwinm. for now --- 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)