From: Luke Kenneth Casson Leighton Date: Sun, 9 Aug 2020 14:20:11 +0000 (+0100) Subject: divwo case makes test_issuer stay busy! X-Git-Tag: semi_working_ecp5~418 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fa7702052ad03a68584de380ed92adc853db1e2b;p=soc.git divwo case makes test_issuer stay busy! --- diff --git a/src/soc/fu/div/test/test_pipe_caller.py b/src/soc/fu/div/test/test_pipe_caller.py index 558e576b..34c54f37 100644 --- a/src/soc/fu/div/test/test_pipe_caller.py +++ b/src/soc/fu/div/test/test_pipe_caller.py @@ -3,7 +3,7 @@ import unittest from soc.simulator.program import Program from soc.config.endian import bigendian -from soc.fu.test.common import (TestCase, TestAccumulatorBase) +from soc.fu.test.common import (TestCase, TestAccumulatorBase, skip_case) from soc.fu.div.pipe_data import DivPipeKind from soc.fu.div.test.helper import (log_rand, get_cu_inputs, @@ -101,6 +101,7 @@ class DivTestCases(TestAccumulatorBase): with Program(lst, bigendian) as prog: self.add_case(prog, initial_regs) + @skip_case("causes test_issuer to go permanently busy!") def case_10_regression(self): # overflow fails lst = ["divwo 3, 1, 2"] initial_regs = [0] * 32