From 815600fb3b1cc4b8e69f3cea7fdb0b46f1329290 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 23 Apr 2021 19:38:35 +0100 Subject: [PATCH] move div tests to openpower.test --- src/soc/fu/div/test/test_pipe_caller_long.py | 39 +------------------- 1 file changed, 1 insertion(+), 38 deletions(-) diff --git a/src/soc/fu/div/test/test_pipe_caller_long.py b/src/soc/fu/div/test/test_pipe_caller_long.py index 4739842f..5b360108 100644 --- a/src/soc/fu/div/test/test_pipe_caller_long.py +++ b/src/soc/fu/div/test/test_pipe_caller_long.py @@ -1,46 +1,9 @@ import unittest -from openpower.simulator.program import Program -from openpower.endian import bigendian -from openpower.test.common import TestAccumulatorBase from soc.fu.div.test.helper import DivTestHelper from soc.fu.div.pipe_data import DivPipeKind - -class DivTestLong(TestAccumulatorBase): - def case_all(self): - instrs = [] - for width in ("w", "d"): - for sign in ("", "u"): - for ov in ("", "o"): - for cnd in ("", "."): - instrs += ["div" + width + sign + ov + cnd, - "div" + width + "e" + sign + ov + cnd] - for sign in ("s", "u"): - instrs += ["mod" + sign + width] - test_values = [ - 0x0, - 0x1, - 0x2, - 0xFFFF_FFFF_FFFF_FFFF, - 0xFFFF_FFFF_FFFF_FFFE, - 0x7FFF_FFFF_FFFF_FFFF, - 0x8000_0000_0000_0000, - 0x1234_5678_0000_0000, - 0x1234_5678_8000_0000, - 0x1234_5678_FFFF_FFFF, - 0x1234_5678_7FFF_FFFF, - ] - for instr in instrs: - l = [f"{instr} 3, 1, 2"] - for ra in test_values: - for rb in test_values: - initial_regs = [0] * 32 - initial_regs[1] = ra - initial_regs[2] = rb - # use "with" so as to close the files used - with Program(l, bigendian) as prog: - self.add_case(prog, initial_regs) +from openpower.test.div.long_div_cases import DivTestLong class TestPipeLong(DivTestHelper): -- 2.30.2