From aac35887d99be8f17f5042854b4c1b9b977e0bfc Mon Sep 17 00:00:00 2001 From: Dmitry Selyutin Date: Wed, 18 Aug 2021 20:03:01 +0000 Subject: [PATCH] test_caller_bcd: mark addg6s test as slowpoke --- src/openpower/decoder/isa/test_caller_bcd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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]) -- 2.30.2