From: Jacob Lifshay Date: Thu, 16 May 2024 01:59:43 +0000 (-0700) Subject: skip extremely slow tests -- >2hr last I checked X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1979fd94d6e3cab2e5682e7d34e1eaaec9079336;p=nmigen-gf.git skip extremely slow tests -- >2hr last I checked --- diff --git a/src/nmigen_gf/hdl/test/test_clmul.py b/src/nmigen_gf/hdl/test/test_clmul.py index 42c29cf..6a066d2 100644 --- a/src/nmigen_gf/hdl/test/test_clmul.py +++ b/src/nmigen_gf/hdl/test/test_clmul.py @@ -96,9 +96,11 @@ class TestCLMulAdd(FHDLTestCase): def test_formal_4x4_8(self): self.tst_formal(4, (8,)) + @unittest.skip("very slow") def test_formal_64x64(self): self.tst_formal(64, ()) + @unittest.skip("very slow") def test_formal_64x64_64(self): self.tst_formal(64, (64,))