From: Dmitry Selyutin Date: Wed, 18 Aug 2021 20:03:01 +0000 (+0000) Subject: test_caller_bcd: mark addg6s test as slowpoke X-Git-Tag: xlen-bcd~117 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aac35887d99be8f17f5042854b4c1b9b977e0bfc;p=openpower-isa.git test_caller_bcd: mark addg6s test as slowpoke --- diff --git a/src/openpower/decoder/isa/test_caller_bcd.py b/src/openpower/decoder/isa/test_caller_bcd.py index 5c6deca6..d1a0ee3f 100644 --- a/src/openpower/decoder/isa/test_caller_bcd.py +++ b/src/openpower/decoder/isa/test_caller_bcd.py @@ -15,7 +15,7 @@ from openpower.decoder.isa.all import ISA # addg6s product limitations -ADDG6S_PRODUCT_LIMIT = 16 +ADDG6S_PRODUCT_LIMIT = 2 # PowerISA Version 3.0C Book 1 App. B, Table 129 @@ -316,6 +316,7 @@ class BCDTestCase(FHDLTestCase): mapping[bcd] = dpd self.run_tst("cbcdtd", mapping) + @unittest.skip("slowpoke") def test_addg6s(self): def half_adder(a, b): (a, b) = map(bool, [a, b])